2018-03-08
springboot-配置支持jsp
springboot 评论:0 浏览:109

转载请注明出处:https://oldnoop.tech/c/156.html

添加依赖

添加webapp目录结构

在src/main/webapp下,
    创建WEB-INF文件夹,在WEB-INF下创建jsp文件夹,
src/main/webapp
        |--WEB-INF
               |- jsp

配置springmvc

修改application.properties

#配置springmvc视图解析器
spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
#静态资源默认路径(/static, /public, /resources,/META-INF/resources)
#spring.mvc.static-path-pattern=/static/**
#spring.resources.static-locations=classpath:/static/

 

 



  • 转载请注明出处:https://oldnoop.tech/c/156.html

Copyright © 2018 oldnoop.tech. All Rights Reserved

鄂ICP备2023022735号-1