SpringBoot学习使用(一)访问html页面

创建springboot配置文件application.roperties

在创建resouces目录下创建application.properties,创建完成后会出现一个绿叶图标

打开application.properties,添加如下配置:

spring.mvc.view.prefix=classpath:/templates/
spring.mvc.view.suffix=.html

优化

1.依赖


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

application.properties是否加了配置:

#thymelea模板配置
spring.thymeleaf.prefix=classpath:/templates/
# templates中的所有文件后缀名
spring.thymeleaf.suffix=.html
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.cache=false

检查.html文件是否放在了resource–>templates文件夹路径下,以及css,js等的外部包是否放在了resource–>static文件夹路径下。

html文件里引入方式为:


从static位置后开始写,如果想静态编辑一起引入,可以:


你可能感兴趣的:(HTML,学习,java,开发语言)