SpringBoot添加jsp支持

     < dependency >
       < groupId >org.springframework.boot</ groupId >
       < artifactId >spring-boot-starter-web</ artifactId >
     </ dependency >
     < dependency >
       < groupId >org.springframework.boot</ groupId >
       < artifactId >spring-boot-starter-tomcat</ artifactId >
     </ dependency >
     < dependency >
       < groupId >org.apache.tomcat.embed</ groupId >
       < artifactId >tomcat-embed-jasper</ artifactId >
     </ dependency >
     < dependency >
       < groupId >javax.servlet</ groupId >
       < artifactId >jstl</ artifactId >
     </ dependency >

spring.mvc.view.prefix=/

spring.mvc.view.suffix=.jsp

猜你喜欢

转载自blog.csdn.net/itWMdevoloping/article/details/80048336