方式一:
1、html文件放在resource下的static目录下
2、配置试图解析器#配置视图解析器
spring:
  mvc:
    view:
      prefix: /
      suffix: .html

方式二:
1、html文件放在resource下的templates目录下
2、配置文件
        spring:
          thymeleaf:
            prefix:
              classpath: /templates   # 访问template下的html文件需要配置模板,映射
            cache: false              # 开发时关闭缓存,不然没法看到实时页面
3、添加依赖:
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>


Controller用@Controller注解代替@RestController
@RestController注解,相当于@Controller+@ResponseBody两个注解的结合,返回json数据不需要在方法前面加@ResponseBody注解了,但使用@RestController这个注解,就不能返回jsp,html页面,视图解析器无法解析jsp,html页面

@GetMapping("/")
public String index(){
    return "index";
}
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐