springboot 1.5.2 thymeleaf 添加templates 静态资源访问路径
Posted 书山有路勤为径,学海无涯苦作舟(肖建锋)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 1.5.2 thymeleaf 添加templates 静态资源访问路径相关的知识,希望对你有一定的参考价值。
从velocity 模板切换到thymeleaf 后, 默认模板位置为templates , 有时候静态资源方在该目录下会出现访问404错误
解决办法:
application.properties 中添加:
spring.mvc.static-path-pattern=/**
spring.resources.static-locations=classpath:/templates/,classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/
以上是关于springboot 1.5.2 thymeleaf 添加templates 静态资源访问路径的主要内容,如果未能解决你的问题,请参考以下文章
springboot & thymeleaf 项目中资源下的静态文件夹和模板文件夹有啥区别?
springboot 1.5.2 thymeleaf 标签未关闭异常解决办法
在 Spring Boot 应用程序中使用 @Valid 和 BindingResult 时的表单输入验证问题