文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

SpringBoot+Thymeleaf基于HTML5现代模板引擎的示例分析

2023-05-31 00:51

关注

这篇文章主要介绍了SpringBoot+Thymeleaf基于HTML5现代模板引擎的示例分析,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

开始使用

1.引入依赖

SpringBoot默认提供了Thymeleaf的Starter,只需简单引入依赖即可。

<dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-thymeleaf</artifactId>    </dependency>

目前默认版本是2.1,如果想升级版本到3.0,可以这样修改。

  <properties>    <thymeleaf.version>3.0.7.RELEASE</thymeleaf.version>    <thymeleaf-layout-dialect.version>2.0.0</thymeleaf-layout-dialect.version>  </properties>

为了方便开发,项目案例采用了热部署工具dev-tools ,这样我们在修改页面之后,IDEA会自动加载,从而达到实现热更新的效果。

   <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-devtools</artifactId>      <scope>runtime</scope>    </dependency>

注:由于IDEA默认关闭了热部署,需要做一些设置才能使其生效。解决方法:首先按住Ctrl+Shift+Alt+/ 然后进入 Registry ,然后勾选compiler.automake.allow.when.app.running 即可。另外,Build->Compiler 也要勾选上Build Project automatically .

2. 添加相关配置

Thymeleaf默认开启了页面缓存,在开发的时候,应该关闭缓存。此外,通常我们还会指定页面的存放路径。(默认是classpath:/templates/)

application.yml 配置如下:spring: thymeleaf:  cache: false #关闭缓存  prefix: classpath:/views/ #添加路径前缀

3.编写HTML

编写Thymeleaf和书写HTML5页面没有什么不同,最大的转变就是使用拓展属性(th:xx)去跟服务端进行数据交互,保留原始页面风格,也是Thymeleaf的推崇的风格。例如下面这个简单的案例,启动项目,我们发现页面跳转的是简书的连接,这一点也验证了Thymeleaf覆盖原生页面数据的极佳能力。

页面代码:

<!DOCTYPE html><html xmlns:th="http://www.thymeleaf.org"><head>  <title>Thymeleaf</title></head><body>  <h3>欢迎使用Thymeleaf!!</h3>  <a href="http://www.baidu.com" rel="external nofollow" th:href="${info}" rel="external nofollow" >戳我有惊喜</a></body></html>

后端代码:

@Controllerpublic class UserController {  @GetMapping("/")  public String index(Model model) {    model.addAttribute("info", "user/list");    return "index";  }  @GetMapping("/user")  public String hehe(Model model) {    model.addAttribute("user", new User(UUID.randomUUID().toString(), "yizhiwazi", "20170928"));    return "user";  }  @GetMapping("/user/list")  public String userlist(Model model) {    List<User> userList = new ArrayList<>();    userList.add(new User(UUID.randomUUID().toString(), "yizhiwazi", "20170928"));    userList.add(new User(UUID.randomUUID().toString(), "kumamon", "123456"));    userList.add(new User(UUID.randomUUID().toString(), "admin", "admin"));    model.addAttribute("userList", userList);    return "userList";  }}

现在我们尝试回填一个表单,展示单个用户信息。

<!-- 使用th:object 搭配*{} 可以省略对象名 --><form action="/" th:object="${user}" >  <input type="hidden" name="userId" th:value="*{userId}" />  <input type="text" name="username" th:value="*{username}" />  <input type="text" name="password" th:value="*{password}" /></form>

接下来,我们进入一个更复杂的案例,例如展示一个用户列表信息,不需要编写新的标签,就可以完成对批量用户的遍历。

<h3>用户列表</h3><!--说明: th:each="obj,stat:${objects}" 分别代表单个实例,状态(可省略),待遍历对象--><div th:each="user:${userList}">  <input type="hidden" name="userId" th:value="${user.userId}"/>  用户姓名:<input type="text" name="password" th:value="${user.username}"/>  登录密码:<input type="text" name="username" th:value="${user.password}"/></div>

好了,Thymeleaf简单介绍到这里,更多详细说明,可阅读Thymeleaf 官方指南 3.0

感谢你能够认真阅读完这篇文章,希望小编分享的“SpringBoot+Thymeleaf基于HTML5现代模板引擎的示例分析”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网行业资讯频道,更多相关知识等着你来学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯