html:
xmlns:th="http://www.thymeleaf.org"
添加相关依赖
pom.xml
1 <!--lombok 2 POJO类常用注解: 3 @Getter/@Setter: 作用类上,生成所有成员变量的getter/setter方法;作用于成员变量上,生成该成员变量的getter/setter方法。可以设定访问权限及是否懒加载等。--> 4 <dependency> 5 <groupId>org.projectlombok</groupId> 6 <artifactId>lombok</artifactId> 7 </dependency> 8 9 10 <!--模板thymeleaf--> 11 <dependency> 12 <groupId>org.thymeleaf</groupId> 13 <artifactId>thymeleaf-spring5</artifactId> 14 </dependency> 15 <dependency> 16 <groupId>org.thymeleaf.extras</groupId> 17 <artifactId>thymeleaf-extras-java8time</artifactId> 18 </dependency>
自动配置
自动给我们默认分配了模版的前缀和后缀,我们只需要按部就班的将模版丢进去即可
application
1 # 应用名称 2 spring.application.name=demo 3 # 应用服务 WEB 访问端口 4 server.port=8080 5 6 #关闭模板引擎的缓存 7 spring.thymeleaf.cache=false 8 9 #添加起始路径 10 #http://localhost:8080/yxcr/ 11 server.servlet.context-path=/yxcr 12 13 #国际化 14 spring.messages.basename=i18n.login