我是靠谱客的博主 淡定手链,这篇文章主要介绍Springboot Thymeleaf模板文件调用Java类静态方法,现在分享给大家,希望可以做个参考。

在模板文件的表达式中,可以使用“${T(全限定类名).方法名(参数)}”这种格式来调用Java类的静态方法。

开发环境:IntelliJ IDEA 2019.2.2

Spring Boot版本:2.1.8

新建一个名称为demo的Spring Boot项目。

1、pom.xml

加入Thymeleaf依赖

复制代码
1
2
3
4
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>

2、src/main/java/com/example/demo/TestUtils.java

复制代码
1
2
3
4
5
6
7
package com.example.demo; public class TestUtils { public static String toUpperCase(String s){ return s.toUpperCase(); } }

3、src/main/java/com/example/demo/TestController.java

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.example.demo; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class TestController { @RequestMapping("/") public String test(){ return "test"; } public static String toLowerCase(String s){ return s.toLowerCase(); } }

4、src/main/resources/templates/test.html

<div th:text="${T(com.example.demo.TestUtils).toUpperCase('hello world 1')}"></div>
<div th:text="${T(com.example.demo.TestController).toLowerCase('HELLO WORLD 2')}"></div>

浏览器访问:http://localhost:8080

页面输出:

HELLO WORLD 1
hello world 2

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持靠谱客。

最后

以上就是淡定手链最近收集整理的关于Springboot Thymeleaf模板文件调用Java类静态方法的全部内容,更多相关Springboot内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(316)

评论列表共有 0 条评论

立即
投稿
返回
顶部