springboot 出现 Cannot resolve MVC View ‘index‘ 问题解决办法,前后端不分离项目前端文件存放位置,已经如何访问
简介:本文讲解,在springboot不分离的项目中,前端的文件存放的位置,和Cannot resolve MVC View ‘index‘ 这个报错怎么处理。
我们需要把html
相关的页面放在resource
的templates
的下面,然后js,css
相关的文件需要放在static
下面
我现在想要访问这个index.html
,需要注意的是@Controller
这样才可以,当返回的String
的时候的时候不是字符串,而是转到对应的地址,然后这个地址,不写templates
。
相关的js文件,放在static下面的时候,不能够加上static
这个路径。
这个时候最重要的是,需要加上两个依赖,才可以让代码识别。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>