IDEA开发springboot项目遇到的问题:Cannot resolve MVC View 'XXX'


事情来源:我自己从头写springboot,到了控制类发现接不上静态资源!
找了很久,最后发现,只需要换依赖版本,让spring-boot-starter-thymeleaf和spring-boot-dependencies对应即可!


    2.6.1



    org.springframework.boot
    spring-boot-dependencies
    ${spring-boot}
    pom
    provided



    org.springframework.boot
    spring-boot-starter-thymeleaf
    ${spring-boot}

结果就可以了:

相关