博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Springboot集成thymeleaf模板引擎
阅读量:5845 次
发布时间:2019-06-18

本文共 599 字,大约阅读时间需要 1 分钟。

hot3.png

springboot原生支持thymeleaf模板,所以配置起来非常方便

1.首先配置application.properties文件

spring.thymeleaf.prefic=classpath:/templates/

spring.thymeleaf.suffix=.html spring.thymeleaf.mode=HTML5 spring.thymeleaf.encoding=UTF-8

2.pom文件添加依赖

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-thymeleaf</artifactId>

</dependency>

3.原生支持,所以配置起来非常简单,可以添加扩展

# 热部署文件,页面不产生缓存,及时更新

spring.thymeleaf.cache=false

spring.resources.chain.strategy.content.enabled=true

spring.resources.chain.strategy.content.paths=/**

4.简简单单,随便写一个controller测试以下就OK

转载于:https://my.oschina.net/u/3194578/blog/1942079

你可能感兴趣的文章
loadrunner安装运行一步一步来(多图)
查看>>
git请求报错 401
查看>>
监控工具htop的安装及使用
查看>>
Nodejs使用图灵机器人获取笑话
查看>>
Spring 任务调度 简单的,使用Schedule
查看>>
SQL 2005删除作业计划出错(DELETE语句与 REFERENCE约束"FK_subplan_job_id"冲突。)的解决...
查看>>
【Touch&input 】支持多个游戏控制器(18)
查看>>
我的友情链接
查看>>
SQL语句学习
查看>>
mysql的SQL性能监控
查看>>
What is Cluster Aware Updating in Windows Server 2012?
查看>>
进老男孩的自我介绍和决心书
查看>>
线上Linux服务器运维安全策略经验分享
查看>>
Android一些问题的解决方案
查看>>
ios之UIToolBar
查看>>
centos 6.5 docker  安装
查看>>
C++静态局部对象
查看>>
一步步学习EF Core(3.EF Core2.0路线图)
查看>>
网络ASI
查看>>
Luogu P4707 重返现世
查看>>