Thymeleaf对象的使用:基本对象
2019-10-12 08:36:36来源:博客园 阅读 ()
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; @Controller public 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
页面输出:
a b c d 上面也可以换成下面方式: b c d
原文链接:https://www.cnblogs.com/gdjlc/p/11657672.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 通过与C++程序对比,彻底搞清楚JAVA的对象拷贝 2020-06-11
- Java笔记:集合 2020-06-10
- Java基础复习——类和对象 2020-06-09
- 聊聊 OAuth 2.0 的 token expire_in 使用 2020-06-08
- JSP九大内置对象 2020-06-07
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash