SpringBoot整合web项目未添加模板引擎无法识别静态页面,报错Cannot resolve MVC View ‘xxx‘

    科技2022-07-11  112

    SpringBoot整合web项目未加模板引擎无法识别静态页面,报错Cannot resolve MVC View 'xxx'

    报错图片

    controller层代码

    @Controller public class IndexController { @RequestMapping({"/","/index.html"}) public String index(){ return "index"; } }

    在经过排查发现未加模板引擎jar包,导致报错

    thymeleaf模板引擎jar包

    <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-thymeleaf --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> <version>2.3.4.RELEASE</version> </dependency>

    加入模板引擎jar包后不在报错且可以成功访问

    访问结果

    Processed: 0.008, SQL: 8