springboot 访问jsp页面

2022-04-22 12:03:28

记得需要打成war包,不然会404. war包会把jsp页面打到根目录。直接 java -jar ruoyi-admin.war  即可访问。

image.png

静态资源会通过静态资源处理器处理,页面解析器找不到页面也会报404 错误。

image.png



jsp和thymeleaf 都需要繼承ViewResolver。只不過jsp需要tomcat的引擎依賴,thymeleaf需要spring-boot-starter-thymeleaf的依賴引擎

spring-boot-starter-thymeleaf
ViewResolver
thymeleaf

image.png