SpringBoot找不到静态资源文件

问题

放在resources/static下的静态css、js文件无法访问,报404错误

解决方法:

application.properties文件中,增加

# 静态路径pattern
spring.mvc.static-path-pattern=/**

然后就可以在templates/index.html文件中按以下方式访问了

    
    
    
    

你可能感兴趣的:(SpringBoot找不到静态资源文件)