spring boot 踩坑日记: Error resolving template "index", template might not exist or might not be accessi

访问index时报错:

org.thymeleaf.exceptions.TemplateInputException: Error resolving template "index", template might not exist or might not be accessible by any of the configured Template Resolvers
    at org.thymeleaf.TemplateRepository.getTemplate(TemplateRepository.java:246) ~[thymeleaf-2.1.6.RELEASE.jar:2.1.6.RELEASE]
 

pom.xml添加依赖:

        
            org.springframework.boot
            spring-boot-starter-thymeleaf
        

意思是找不到index页面,index所在目录不对,改成正确的就行了

spring boot 踩坑日记: Error resolving template

还不行的话改成templates

 

 

你可能感兴趣的:(spring-boot踩坑日记,springboot爬坑日记)