本篇說明在Java Web專案需要那些基本jar檔。
一、Java Web 主要需要基本三個jar檔
1、Servlet
2、JSP
3、JSTL
二、取得JAR檔
JAR檔可以在Maven倉庫中找的到
1、Servlet
http://mvnrepository.com/artifact/javax.servlet/javax.servlet-api/3.1.0
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
2、JSP
http://mvnrepository.com/artifact/javax.servlet/jsp-api/2.0
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
</dependency>
3、JSTL
http://mvnrepository.com/artifact/javax.servlet/jstl/1.2
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependencies>
<!-- 1. Servlet -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<!-- 2. JSP -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
</dependency>
<!-- 3. JSTL -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
其它文章
沒有留言:
張貼留言