spring boot thymeleaf页面500问题

Error resolving template "stomp", template might not exist or might not be accessible by any of the 

我在按照网上的教程去使用thymeleaf时,总是报以上错误,但我的html文件明明存在,而且在配置文件里也都有配置,controller返回的视图名称也没错,但一访问模板就总是报500错误,并且访问static,public里的html文件时也总是404。

在经过一番搜索无果后,我便去查看了pom文件,发现我之前为了扫描yml配置文件,在build里添加了以下配置,导致编译时只扫描了resources文件夹里的yml文件,到此我们就知道了错误所在。

spring boot thymeleaf页面500问题_第1张图片

因此,为了让spring boot也能扫描到模板文件,我们需要添加以下配置,去扫描resources里的所有文件,重新编译后,html文件等便都可以正常访问了~

spring boot thymeleaf页面500问题_第2张图片

你可能感兴趣的:(spring,boot)