springboot jsp 頁面不解析的2種辦法。
阿新 • • 發佈:2022-03-29
通用:
在 pom.xml 裡新增依賴
<dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> <!-- 這裡放開可以解析jsp <scope>provided</scope>--> </dependency> <dependency><groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </dependency> </dependencies>
第一種辦法,把jasper的作用域 改為 <scope> provided </scope>
第二種辦法,點選主應用(這裡取名為maven),mvn外掛執行 mvn spring-boot:run (中間有冒號),需要在pom裡有maven的plugin
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> </configuration> </plugin> </plugins> </build>