Skip to content

Commit

Permalink
Spring Boot干货系列:(五)开发Web应用之JSP篇
Browse files Browse the repository at this point in the history
Spring Boot干货系列:(五)开发Web应用之JSP篇
  • Loading branch information
tengj committed Dec 27, 2017
1 parent 8275ca9 commit f5cfc84
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions chapter5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!-- 方法一 -->
<!-- 部署外部tomcat 方法一 -->
<!--<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
Expand All @@ -37,25 +37,25 @@
</exclusions>-->
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>

<!-- 方法二 -->
<dependency>

<!-- 部署外部tomcat 方法二 -->
<!--<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
</dependency>-->

<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
<!--<scope>provided</scope>-->
</dependency>


<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit f5cfc84

Please sign in to comment.