Cannot resolve MVC view ‘xxx‘

Cannot resolve MVC view ‘xxx‘_第1张图片

这是在springboot下通过controller访问templates目录下的静态文件(Hello.html)报的错误

原因:缺少thymeleaf依赖


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

添加之后并刷新

Cannot resolve MVC view ‘xxx‘_第2张图片

Hello下的波浪线变成直线说明错误得以解决

你可能感兴趣的:(SpringBoot,mvc)