时间:2021-05-20
Thymeleaf中有许多内置对象,可以在模板中实现各种功能。
下面有几个基本对象。
Web对象常用有:request、session、servletContext。
Thymeleaf提供了几个内置变量param、session、application,分别可以访问请求参数、session属性、application属性。
其中request的所有属性可以直接使用 ${属性名} 访问。
备注:内置对象与内置变量是两个概念,内置对象使用“${#对象}”形式,内置变量则不需要“#”。
开发环境:IntelliJ IDEA 2019.2.2
Spring Boot版本:2.1.8
新建一个名称为demo的Spring Boot项目。
1、pom.xml加入Thymeleaf依赖:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>2、src/main/resources/templates/test1.html
<div th:text="${param.name1}"></div><div th:text="${#request.getAttribute('name2')}"></div><div th:text="${#session.getAttribute('name3')}"></div><div th:text="${#servletContext.getAttribute('name4')}"></div>上面也可以换成下面方式:<div th:text="${name2}"></div><div th:text="${session.name3}"></div><div th:text="${application.name4}"></div>3、src/main/java/com/example/demo/Test1Controller.java
package com.example.demo;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestParam;import javax.servlet.http.HttpServletRequest;@Controllerpublic class Test1Controller { @RequestMapping("/test1") public String test1(@RequestParam String name1, HttpServletRequest request){ request.setAttribute("name2", "b"); request.getSession().setAttribute("name3", "c"); request.getServletContext().setAttribute("name4","d"); return "test1"; }}浏览器访问:http://localhost:8080/test1?name1=a
页面输出:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Thymeleaf主要使用org.thymeleaf.expression.Numbers类处理数字,在模板中使用#numbers对象来处理数字。开发环境:In
Thymeleaf主要使用org.thymeleaf.expression.Strings类处理字符串,在模板中使用#strings对象来处理字符串。开发环境:
我们使用prototype属性提供对象的类的一组基本功能。并且对象的新实例会"继承"赋予该对象原型的操作。但是这个prototype到底是怎么实现和被管理的呢?
一、绑定方法 1.对象的绑定方法 首先我们明确一个知识点,凡是类中的方法或函数,默认情况下都是绑定给对象使用的。下面,我们通过实例,来慢慢解析绑定方法的应用
一、绑定方法 1.对象的绑定方法 首先我们明确一个知识点,凡是类中的方法或函数,默认情况下都是绑定给对象使用的。下面,我们通过实例,来慢慢解析绑定方法的应用