解决springboot使用thymeleaf加载静态资源访问路径问题

1.在所有需要加载静态资源的页面加上如下一句话


2.引用静态资源的方式

th:href="@{static/assets/css/amazeui.min.css}

3.我的springboot配置

#模板文件位置
spring.thymeleaf.prefix=classpath:/templates/
spring.resources.static-locations=classpath:/static/
spring.mvc.static-path-pattern=/static/**

解决springboot使用thymeleaf加载静态资源访问路径问题_第1张图片

你可能感兴趣的:(解决springboot使用thymeleaf加载静态资源访问路径问题)