`
frank1998819
  • 浏览: 764013 次
  • 性别: Icon_minigender_1
  • 来自: 南京
文章分类
社区版块
存档分类

SpringBoot页面展示Thymeleaf(转)

 
阅读更多

开发传统Java WEB工程时,我们可以使用JSP页面模板语言,但是在SpringBoot中已经不推荐使用了。SpringBoot支持如下页面模板语言

  • Thymeleaf
  • FreeMarker
  • Velocity
  • Groovy
  • JSP

上面并没有列举所有SpringBoot支持的页面模板技术。其中Thymeleaf是SpringBoot官方所推荐使用的,下面来谈谈Thymeleaf一些常用的语法规则。

添加Thymeleaf依赖

要想使用Thhymeleaf,首先要在pom.xml文件中单独添加Thymeleaf依赖。

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

Spring Boot默认存放模板页面的路径在src/main/resources/templates或者src/main/view/templates,这个无论是使用什么模板语言都一样,当然默认路径是可以自定义的,不过一般不推荐这样做。另外Thymeleaf默认的页面文件后缀是.html

数据显示

在MVC的开发过程中,我们经常需要通过Controller将数据传递到页面中,让页面进行动态展示。

显示普通文本

创建一个Controller对象,在其中进行参数的传递

@Controller
public class ThymeleafController {

    @RequestMapping(value = "show", method = RequestMethod.GET)
    public String show(Model model){
        model.addAttribute("uid","123456789");
        model.addAttribute("name","Jerry");
        return "show";
    }
}

在SpringBoot默认的页面路径下创建show.html文件,内容如下

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>SpringBoot模版渲染</title>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
</head>
<body>
    <p th:text="'用户ID:' + ${uid}"/>
    <p th:text="'用户名称:' + ${name}"/>
</body>
</html>

可以看到在p标签中有th:text属性,这个就是thymeleaf的语法,它表示显示一个普通的文本信息。

如果我们要显示的信息是存在资源文件中的,同样可以在页面中显示,例如资源文件中定义了内容welcome.msg=欢迎{0}光临!。可以在页面中将其显示

<h2 th:text="#{welcome.msg('admin')}"/>

另外,在th:utext中还能做一些基础的数学运算

<p th:text="'数学计算:1+2=' + (1 + 2)"/>

显示带有样式的普通文本

如果我们想要传递到的页面的信息,它本身是带有CSS样式的,这个时候如何在页面中将携带的样式信息也显示出来?此时我们的控制器方法这样写。

@RequestMapping(value = "showStyle", method = RequestMethod.GET)
public String showStyle(Model model){
    model.addAttribute("uid","123456789");
    model.addAttribute("name","<span style='color:red'>Jerry</span>");
    return "show_style";
}

此时页面中需要借助th:utext属性进行显示

<p th:utext="'用户名称:' + ${name}"/>

通过浏览器查看页面源码可以看出th:utextth:text的区别是:th:text会对<>进行转义,而th:utext不会转义。

显示对象

我们常常需要将一个bean信息展示在前端页面当中。

  1. 用于前端展示的VO类
public class User implements Serializable {
    private Long uid ;
    private String name ;
    private Integer age ;
    private Date birthday ;
    private Double salary ;
    //省略get/set方法
}
  1. 控制器方法
@RequestMapping(value = "/message/member_show", method = RequestMethod.GET)
public String memberShow(Model model) {
    User vo = new User();
    vo.setUid(12345678L);
    vo.setName("尼古拉丁.赵四");
    vo.setAge(59);
    vo.setSalary(1000.00);
    vo.setBirthday(new Date());
    model.addAttribute("member", vo);
    return "message/member_show";
}
  1. 页面展示
<div>
    <p th:text="'用户编号:' + ${member.uid}"/>
    <p th:text="'用户姓名:' + ${member.name}"/>
    <p th:text="'用户年龄:' + ${member.age}"/>
    <p th:text="'用户工资:' + ${member.salary}"/>
    <p th:text="'出生日期:' + ${member.birthday}"/>
    <p th:text="'出生日期:' + ${#dates.format(member.birthday,'yyyy-MM-dd')}"/>
</div>

<hr/>
<div th:object="${member}">
    <p th:text="'用户编号:' + *{uid}"/>
    <p th:text="'用户姓名:' + *{name}"/>
    <p th:text="'用户年龄:' + *{age}"/>
    <p th:text="'用户工资:' + *{salary}"/>
    <p th:text="'出生日期:' + *{birthday}"/>
    <p th:text="'出生日期:' + *{#dates.format(birthday,'yyyy-MM-dd')}"/>
</div>

上面给出了两种展现方式,一种是通过${属性},另外一种是通过{属性}。
关于“${属性}”和“{属性}”的区别?
$访问完整信息,而
访问指定对象中的属性内容, 如果访问的只是普通的内容两者没有区别;

数据处理

在 thymeleaf 之中提供有相应的集合的处理方法,例如:在使用 List 集合的时候可以考虑采用 get()方法获取指定索引的数据,那么在使用 Set 集合的时候会考虑使用 contains()来判断某个数据是否存在,使用 Map 集合的时候也希望可以使用 containsKey()判断某个 key 是否存在,以及使用get()根据 key 获取对应的 value,而这些功能在之前并不具备,下面来观察如何在页面中使用此类操作

  1. 控制器方法向页面传递一些数据,以供操作
(value = "/user/set", method = RequestMethod.GET)
public String set(Model model) {
    Set<String> allNames = new HashSet<String>() ;
    List<Integer> allIds = new ArrayList<Integer>() ;
    for (int x = 0 ; x < 5 ; x ++) {
        allNames.add("boot-" + x) ;
        allIds.add(x) ;
    }
    model.addAttribute("names", allNames) ;
    model.addAttribute("ids", allIds) ;
    model.addAttribute("mydate", new java.util.Date()) ;
    return "user_set" ;
}
  1. 数据处理
<body>
    <p th:text="${#dates.format(mydate,'yyyy-MM-dd')}"/>
    <p th:text="${#dates.format(mydate,'yyyy-MM-dd HH:mm:ss.SSS')}"/>
    <hr/>
    <p th:text="${#strings.replace('www.baidu.cn','.','$')}"/>
    <p th:text="${#strings.toUpperCase('www.baidu.cn')}"/>
    <p th:text="${#strings.trim('www.baidu.cn')}"/>
    <hr/>
    <p th:text="${#sets.contains(names,'boot-0')}"/>
    <p th:text="${#sets.contains(names,'boot-9')}"/>
    <p th:text="${#sets.size(names)}"/>
    <hr/>
    <p th:text="${#sets.contains(ids,0)}"/>
    <p th:text="${ids[1]}"/>
    <p th:text="${names[1]}"/>
</body>

路径处理

在传统WEB工程开发时,路径的处理操作是有点麻烦的。SpringBoot中为我们简化了路径的处理。

  1. 在"src/main/view/static/js"中创建一个js文件


     
    js文件路径
  2. 然后在页面中可以通过“@{路径}”来引用。
<script type="text/javascript" th:src="@{/js/main.js}"></script> 

页面之间的跳转也能通过@{}来实现

<a th:href="@{/show}">访问controller方法</a>
<a th:href="@{/static_index.html}">访问静态页面</a>

操作内置对象

虽然在这种模版开发框架里面是不提倡使用内置对象的,但是很多情况下依然需要使用内置对象进行处理,所以下面来看下如何在页面中使用JSP内置对象。

  1. 在控制器里面增加一个方法,这个方法将采用内置对象的形式传递属性。
@RequestMapping(value = "/inner", method = RequestMethod.GET)
public String inner(HttpServletRequest request, Model model) {
    request.setAttribute("requestMessage", "springboot-request");
    request.getSession().setAttribute("sessionMessage", "springboot-session");
    request.getServletContext().setAttribute("applicationMessage",
            "springboot-application");
    model.addAttribute("url", "www.baidu.cn");
    request.setAttribute("url2",
            "<span style='color:red'>www.baidu.cn</span>");
    return "show_inner";
}
  1. 在页面之中如果要想访问不同属性范围中的内容,则可以采用如下的做法完成:
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>SpringBoot模版渲染</title>
    <script type="text/javascript" th:src="@{/js/main.js}"></script> 
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
</head>
<body>
    <p th:text="${#httpServletRequest.getRemoteAddr()}"/>
    <p th:text="${#httpServletRequest.getAttribute('requestMessage')}"/>
    <p th:text="${#httpSession.getId()}"/>
    <p th:text="${#httpServletRequest.getServletContext().getRealPath('/')}"/>
    <hr/>
    <p th:text="'requestMessage = ' + ${requestMessage}"/>
    <p th:text="'sessionMessage = ' + ${session.sessionMessage}"/>
    <p th:text="'applicationMessage = ' + ${application.applicationMessage}"/>
</body>
</html>

thymeleaf 考虑到了实际的开发情况,因为 request 传递属性是最为常用的,但是 session 也有可能使用,例如:用户登录之后需要显示用户 id,那么就一定要使用到 session,所以现在必须增加属性范围的形式后才能够正常使用。在 thymeleaf 里面也支持有 JSP 内置对象的获取操作,不过一般很少这样使用。

逻辑处理

所有的页面模版都存在各种基础逻辑处理,例如:判断、循环处理操作。在 Thymeleaf 之中对于逻辑可以使用如下的一些运算符来完成,例如:and、or、关系比较(>、<、>=、<=、==、!=、lt、gt、le、ge、eq、ne)。

通过控制器传递一些属性内容到页面之中:

<span th:if="${member.age lt 18}">
未成年人!
</span>
<span th:if="${member.name eq '啊三'}">
欢迎小三来访问!
</span>

不满足条件的判断

<span th:unless="${member.age gt 18}">
你还不满18岁,不能够看电影!
</span>

通过swith进行分支判断

<span th:switch="${member.uid}"><p th:case="100">uid为101的员工来了</p><p th:case="99">uid为102的员工来了</p><p th:case="*">没有匹配成功的数据!</p></span>

数据遍历

在实际开发过程中常常需要对数据进行遍历展示,一般会将数据封装成list或map传递到页面进行遍历操作。

  1. 定义控制器类,向页面传递List数据和Map数据

public class UserController {
    (value = "/user/map", method = RequestMethod.GET)
    public String map(Model model) {
        Map<String,User> allMembers = new HashMap<String,User>();
        for (int x = 0; x < 10; x++) {
            User vo = new User();
            vo.setUid(101L + x);
            vo.setName("赵四 - " + x);
            vo.setAge(9);
            vo.setSalary(99999.99);
            vo.setBirthday(new Date());
            allMembers.put("mldn-" + x, vo);
        }
        model.addAttribute("allUsers", allMembers);
        return "user_map";
    }

    (value = "/user/list", method = RequestMethod.GET)
    public String list(Model model) {
        List<User> allMembers = new ArrayList<User>();
        for (int x = 0; x < 10; x++) {
            User vo = new User();
            vo.setUid(101L + x);
            vo.setName("赵四 - " + x);
            vo.setAge(9);
            vo.setSalary(99999.99);
            vo.setBirthday(new Date());
            allMembers.add(vo) ;
        }
        model.addAttribute("allUsers", allMembers);
        return "user_list";
    }
}
  1. list类型数据遍历
<body>
    <table>
        <tr><td>No.</td><td>UID</td><td>姓名</td><td>年龄</td><td>偶数</td><td>奇数</td></tr>
        <tr th:each="user,memberStat:${allUsers}">
            <td th:text="${memberStat.index + 1}"/>
            <td th:text="${user.uid}"/>
            <td th:text="${user.name}"/>
            <td th:text="${user.age}"/>
            <td th:text="${memberStat.even}"/>
            <td th:text="${memberStat.odd}"/>
        </tr>
    </table>
</body>
  1. map类型数据遍历
<body>
    <table>
        <tr><td>No.</td><td>KEY</td><td>UID</td><td>姓名</td><td>年龄</td><td>偶数</td><td>奇数</td></tr>
        <tr th:each="memberEntry,memberStat:${allUsers}">
            <td th:text="${memberStat.index + 1}"/>
            <td th:text="${memberEntry.key}"/>
            <td th:text="${memberEntry.value.uid}"/>
            <td th:text="${memberEntry.value.name}"/>
            <td th:text="${memberEntry.value.age}"/>
            <td th:text="${memberStat.even}"/>
            <td th:text="${memberStat.odd}"/>
        </tr>
    </table>
</body>

页面引入

我们常常需要在一个页面当中引入另一个页面,例如,公用的导航栏以及页脚页面。thymeleaf中提供了两种方式进行页面引入。

  • th:replace
  • th:include
  1. 新建需要被引入的页面文件,路径为"src/main/view/templates/commons/footer.html"
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<footer th:fragment="companyInfo">
    <p>设为首页 ©2018 SpringBoot 使用<span th:text="${projectName}"/>前必读
        意见反馈 京ICP证030173号 </p>
</footer>

可以看到页面当中还存在一个变量projectName,这个变量的值可以在引入页面中通过th:with="projectName=百度"传过来。

  1. 引入页面中只需要添加如下代码即可
<div th:include="@{/commons/footer} :: companyInfo" th:with="projectName=百度"/>


作者:Coding小聪
链接:https://www.jianshu.com/p/a842e5b5012e
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
分享到:
评论

相关推荐

    springboot2.7.15+thymeleaf 代码

    在SpringBoot和Thymeleaf的组合中,可以使用Spring Data JPA或MyBatis等持久层框架处理数据库交互,Thymeleaf则负责展示列表、添加、编辑和删除的界面。这可能涉及到实体类的设计、Repository接口的定义、Service层...

    SpringBoot框架整合thymeleaf模板和mybatis

    整合SpringBoot、Thymeleaf和MyBatis,我们可以创建一个高效的Web应用,其中SpringBoot负责整体的上下文管理和自动配置,Thymeleaf处理用户界面的动态展示,而MyBatis则作为数据访问层,负责与数据库交互。...

    springboot2.0-thymeleaf.rar

    如果所有配置正确,Thymeleaf模板将被渲染并返回给客户端,展示出动态生成的页面。 总结起来,这个"springboot2.0-thymeleaf.rar"项目是一个关于如何在SpringBoot 2.0中使用Thymeleaf进行Web开发的实例。通过学习这...

    一个基于SpringBoot+Thymeleaf渲染的图书管理系统

    另外,SpringBoot Actuator提供了健康检查、指标展示、审计跟踪等一系列监控功能,帮助运维人员了解系统状态。 以上是基于SpringBoot+Thymeleaf实现图书管理系统的概述,实际项目中还可能涉及到更多的技术细节,如...

    springboot整合thymeleaf完整例子

    SpringBoot 是一个流行的Java开发框架,它简化了...通过以上步骤,你就可以构建一个简单的SpringBoot应用,结合Thymeleaf实现动态网页展示。在实际开发中,你可以根据需求扩展功能,如添加更多的路由、处理表单提交等。

    SpringBoot页面展示Thymeleaf

    其中Thymeleaf是SpringBoot官方所推荐使用的,下面来谈谈Thymeleaf一些常用的语法规则。SpringBoot默认存放模板页面的路径在src/main/resources/templates或者src/main/view/templates,这个无论是使用什么模板语言...

    SpringBoot加Thymeleaf模板

    SpringBoot与Thymeleaf模板的整合是现代Java Web开发中的常见实践,它极大地简化了前端展示和后端逻辑的交互。SpringBoot以其简洁的配置和开箱即用的特性深受开发者喜爱,而Thymeleaf则是一款强大的服务器端模板引擎...

    springboot+thymeleaf可运行的案例

    SpringBoot和Thymeleaf是两个非常流行的Java技术,它们在构建现代Web...同时,Thymeleaf模板的使用将让你掌握如何在前端展示动态数据。如果你对任何部分有疑问,记得查看`t.txt`说明文件或者联系案例提供者获取支持。

    rebu.zip springboot+mybatis+thymeleaf 热部署 java 热部署页面访问

    在SpringBoot中,Thymeleaf通常用于视图层渲染,与后端数据交互,提供动态网页展示。 至于“热部署”,这是一个开发工具的特性,允许开发者在修改代码后无需重新启动服务器就能看到更改的效果。在Java开发环境中,...

    SpringBoot整合Jpa和Thymeleaf实现CRUD

    通过学习和实践这个项目,开发者不仅能掌握SpringBoot的基础应用,还能深入了解JPA的高级特性和Thymeleaf的页面渲染能力,从而在实际开发中更加游刃有余。同时,这个项目也展示了如何通过SpringBoot整合各种技术,...

    springboot整合thymeleaf+maven实现异常处理页面

    在这个“springboot整合thymeleaf+maven实现异常处理页面”的案例中,我们将探讨如何在 SpringBoot 应用中整合 Thymeleaf 和 Maven,以及如何设置自定义的全局异常处理机制,使得当应用程序出现异常时,能够优雅地将...

    springboot页面静态化-Thymeleaf

    在本项目"springboot页面静态化-Thymeleaf"中,我们将探讨如何利用Thymeleaf技术实现Spring Boot应用的页面静态化,并通过一个简单的示例来演示其基本用法。 1. **Thymeleaf简介** Thymeleaf是一个开放源代码的...

    springboot+springdatajpa+thymeleaf+shiro 的管理平台框架

    在本框架中,Thymeleaf负责前端页面的展示,实现数据的动态插入和更新,提升用户体验。 **Shiro** Apache Shiro是一个强大的安全框架,主要用于身份认证、授权、会话管理和加密。在本管理平台中,Shiro起到了安全...

    基于SpringBoot及thymeleaf搭建的疫情信息管理系统

    基于SpringBoot及thymeleaf搭建的疫情信息管理系统 可做毕设 抗疫管理员登录后可以进行确诊患者管理、密切接触者管理、死亡管理、治愈管理,同时可以看到数据面板的数据变化与动态图。系统管理员除了拥有抗疫管理者...

    基于springboot +mybatis +thymeleaf 的学生信息管理系统

    系统基于Java编程语言,采用SpringBoot框架,结合MyBatis持久层框架和Thymeleaf模板引擎,打造了一个完整的后端服务和前端展示平台。 SpringBoot是Spring框架的简化版本,它极大地简化了Spring应用的初始搭建以及...

    springboot+thymeleaf

    这个小例子展示了如何在SpringBoot应用中整合Thymeleaf模板引擎,实现用户登录功能,并通过数据库来管理角色和权限的关系。下面将详细阐述相关知识点。 1. **SpringBoot**: SpringBoot是Spring框架的一个简化版,...

    SpringBoot+Thymeleaf跳转的简单实例

    在本实例中,我们将深入探讨如何在Spring Boot项目中整合Thymeleaf模板引擎,以实现页面跳转和数据展示。Spring Boot是一个流行的Java框架,它简化了Spring应用的初始搭建以及开发过程,而Thymeleaf则是一个现代的...

    Springboot SpringMVC thymeleaf页面提交Validation实现实例.pdf

    在Spring Boot应用中,结合Spring MVC和Thymeleaf,我们可以实现前端页面的数据验证功能,这就是所谓的Validation。这个实例展示了如何在用户提交表单时,通过后台验证确保数据的完整性和准确性。 首先,实例中使用...

    (springboot+thymeleaf)增删改查,请假管理系统.rar

    在审批页面,Thymeleaf可以展示待审批的请假记录,并提供审批操作的按钮。 系统的用户角色管理是另一个重要特性。系统管理员可能拥有最高权限,可以管理所有用户和请假记录;辅导员可能只能查看和审批自己班级学生...

    pay.rar springboot2集成thymeleaf,web工程

    例如,下面的代码展示了如何使用Thymeleaf显示欢迎消息: ```html &lt;!DOCTYPE html&gt; &lt;html xmlns:th="http://www.thymeleaf.org"&gt; 欢迎页面 欢迎,' + ${username}"&gt; ``` **三、控制器与视图的关联...

Global site tag (gtag.js) - Google Analytics