javaWeb项目在用maven启动时必须要用到的坐标

 1 <!-- jsp -->
 2 <dependency>
 3     <groupId>javax.servlet</groupId>
 4     <artifactId>javax.servlet-api</artifactId>
 5     <version>3.0.1</version>
 6     <scope>provided</scope>
 7 </dependency>
 8 <dependency>
 9     <groupId>javax.servlet.jsp</groupId>
10     <artifactId>jsp-api</artifactId>
11     <version>2.1</version>
12     <scope>provided</scope>
13 </dependency>
14 <dependency>
15     <groupId>javax.servlet</groupId>
16     <artifactId>jstl</artifactId>
17     <version>1.2</version>
18 </dependency>
19 <!-- jsp -->

 

posted @ 2017-06-16 14:21  小xu233  阅读(945)  评论(0编辑  收藏  举报