springboot下无法访问html文件的解决方案

springboot项目结构如下

springboot下无法访问html文件的解决方案_第1张图片
image.png

在浏览器中无法直接访问 http://localhost:8080/registerenterprise.html(springmvc的web项目可直接访问)
解决方案是在appliation.properties下添加
spring.resources.static-locations=classpath:/templates/
表明静态资源的位置,即可直接访问

你可能感兴趣的:(springboot下无法访问html文件的解决方案)