SpringBoot项目使用Thymeleaf报错问题解决

1、启动项目,访问templates文件夹下的login.html页面,报如下错误:

SpringBoot项目使用Thymeleaf报错问题解决_第1张图片

控制台报错信息:org.thymeleaf.exceptions.TemplateInputException: Error resolving template "login", template might not exist or might not be accessible by any of the configured Template Resolvers。。。

2、问题解决:报错之后在项目中一顿排查,发现是我的pom.xml中的配置导致的,删除如下配置即可:


            
                src/main/java
                
                    **/*.xml
                

            

            
                src/main/resources
                
                    **.*
                

            

        

你可能感兴趣的:(Error,Solve)