
thymeleaf
祈雨v
这个作者很懒,什么都没留下…
展开
-
thymeleaf(1)整合spring4
1、maven依赖<dependency> <groupId>org.thymeleaf</groupId> <artifactId>thymeleaf</artifactId> <version>2.1.5.RELEASE</version></dependency原创 2018-02-23 19:40:44 · 701 阅读 · 0 评论 -
thymeleaf(2)基本语法
以下来源于网络。标准表达式语法它们分为四类: • 1.变量表达式 • 2.选择或星号表达式 • 3.文字国际化表达式 • 4.URL表达式变量表达式变量表达式即OGNL表达式或Spring EL表达式(在Spring术语中也叫model attributes)。如下所示: ${session.user.name}它们将以HTML标签的一个属性...转载 2018-02-23 20:00:41 · 1135 阅读 · 0 评论 -
thymeleaf(3)自定义标签
1、申明自定义标签package wxtx.com.thymeleaf;import java.util.HashSet;import java.util.Set;import org.springframework.stereotype.Component;import org.thymeleaf.processor.IProcessor;import org.thymelea...原创 2018-02-23 20:06:51 · 3820 阅读 · 6 评论