springboot 无法默认访问template下面的html

一、template下文件不允许直接访问
1、查资料得知:springboot项目默认是不允许直接访问template下的文件的,是受保护的。

 所以想访问template下的html页面,我们可以配置视图解析器。

2、如果想要用视图去展示,应该要设置好视图展示页面,比如说用一个模板语言来接收返回的数据(thymeleaf或者freemarker等), 也可以用jsp接收,但是SpringBoot官方是不推荐用jsp的,而是建议使用thymeleaf作为模板语言,这里我以thymeleaf为例。

二、配置步骤
1、pom.xml添加依赖


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

2、application.yml中添加配置

spring:
  thymeleaf:
    prefix:
      classpath: /templates   # 访问template下的html文件需要配置模板,映射
    cache: false # 开发时关闭缓存,不然没法看到实时页面

3、template下添加一个index.html文件
springboot 无法默认访问template下面的html_第1张图片

4、三种可以访问方式
第一种:配置Controller
springboot 无法默认访问template下面的html_第2张图片
第二种
springboot 无法默认访问template下面的html_第3张图片
第三种springboot 无法默认访问template下面的html_第4张图片
小哥哥给上你的赞哟

你可能感兴趣的:(Springboot)