1、首先,既然我们要 *** 作集合,那么我们首先需要先实例化一个集合,我们先实例化一个ArrayList()。
2、使用add()可以往指定的集合中添加一个元素,如我们这里添加一个字符串“java”到集合中。
3、将集合输出到控制台,确定元素已经添加到了集合中。我们直接使用Systemoutprintln()将其结果输出到控制台即可。
4、在控制台中,显示出下图所示的结果,说明我们添加元素成功了。我们进一步对集合进行其他的 *** 作。
5、接下来,我们contains()判断使用包含指定的元素。
6、我们再声明一个新的集合,同时往集合中添加元素。最后得到一个具有几个元素的集合。
7、我们这里输出的结果是true。
扩展资料
Thymeleaf语法:
用于访问 容器上下文环境 中的变量,例:
<span th:text="${information}">
(2) 选择变量表达式:{}
选择表达式计算的是 选定的对象 (th:object对象属性绑定的对象)
<div th:object="${session user}" >
Name: <span th: text=" {firstName}" >Sebastian
Surname: <span th: text=" {lastName}" >Pepper
Nationality: <span th: text=" {nationality}" >Saturn
</div>
(3) 信息表达式:#{}
一般用于 显示页面静态文本。将可能需要根据需求而整体变动的静态文本放在properties文件中,方便维护。通常与th:text属性一起使用。例如:
新建/WEB-INF/templates/homehtml,段落:<p th: text=" #{home welcome}" >This text will not be show!
新建/WEB-INF/templates/homeproperties,homewelcome:
homewelcome=this messages is from homeproperties!
Thymeleaf 基本表达式
如需了解thymeleaf以及thymeleaf整合spring,请参考《Thymeleaf模板引擎使用》、《Thymeleaf 集成spring》
${}
变量表达式(美元表达式,哈哈),用于访问容器上下文环境中的变量,功能同jstl中${}。
例如:
protected void doPost()throws ServletException, IOException {
//Create Servlet context
WebContext ctx = new WebContext(req, resp, thisgetServletContext(), reqgetLocale());
ctxsetVariable("helloword","hello thymeleaf,wellcome!");
//Executing template engine
templateEngineprocess("home", ctx, respgetWriter());
}
模板页面访问变量
<p><span th:text="${helloword}"></span></p>回到顶部
{}
选择表达式(星号表达式)。选择表达式与变量表达式有一个重要的区别:选择表达式计算的是选定的对象,而不是整个环境变量映射。也就是:只要是没有选择的对象,选择表达式与变量表达式的语法是完全一样的。那什么是选择的对象呢?是一个:th:object对象属性绑定的对象。
例如:
<div th: obj ect=" ${session user}" ><p>Name: <span th: text=" {firstName}" >Sebastian</span> </p>
<p>Surname: <span th: text=" {lastName}" >Pepper</span> </p>
<p>Nationality: <span th: text=" {nationality}" >Saturn</span> </p>
</div>
上例中,选择表达式选择的是th:object对象属性绑定的session user对象中的属性。
回到顶部
#{}
消息表达式(井号表达式,资源表达式)。通常与th:text属性一起使用,指明声明了th:text的标签的文本是#{}中的key所对应的value,而标签内的文本将不会显示。
例如:
新建/WEB-INF/templates/homehtml,段落
<p th: text=" #{home welcome}" >This text will not be show! </p>新建/WEB-INF/templates/homeproperties,homewelcome:
homewelcome=this messages is from homeproperties!测试结果:
从测试结果可以看出,消息表达式通常用于显示页面静态文本,将静态文本维护在properties文件中也方面维护,做国际化等。
回到顶部
@{}
超链接url表达式。
例如:
<script th:src="@{/resources/js/jquery/jqueryjson-24minjs}"
回到顶部
#maps
工具对象表达式。常用于日期、集合、数组对象的访问。这些工具对象就像是java对象,可以访问对应java对象的方法来进行各种 *** 作。
例如:
<div th:if="${#mapssize(stuReqBeanstudents[__${rowStatindex}__]score) != 0}"><label>${scorekey}:</label><input type="text" th:value="${scorevalue}"></input>
</div>
<div th:if="${#mapsisEmpty(stuReqBeanstudents[__${rowStatindex}__]score)}">
do something
</div>
其他工具对象表达式还有:
#dates#calendars
#numbers
#strings
#objects
#bools
#arrays
#lists
#sets
简单说, Thymeleaf 是一个跟 Velocity、FreeMarker 类似的模板引擎,它可以完全替代 JSP 。相较与其他的模板引擎,它有如下三个极吸引人的特点:
1Thymeleaf 在有网络和无网络的环境下皆可运行,即它可以让美工在浏览器查看页面的静态效果,也可以让程序员在服务器查看带数据的动态页面效果。这是由于它支持 html 原型,然后在 html 标签里增加额外的属性来达到模板+数据的展示方式。浏览器解释 html 时会忽略未定义的标签属性,所以 thymeleaf 的模板可以静态地运行;当有数据返回到页面时,Thymeleaf 标签会动态地替换掉静态内容,使页面动态显示。
2Thymeleaf 开箱即用的特性。它提供标准和spring标准两种方言,可以直接套用模板实现JSTL、 OGNL表达式效果,避免每天套模板、该jstl、改标签的困扰。同时开发人员也可以扩展和创建自定义的方言。
3Thymeleaf 提供spring标准方言和一个与 SpringMVC 完美集成的可选模块,可以快速的实现表单绑定、属性编辑器、国际化等功能。
标准表达式语法
它们分为四类:
1变量表达式
2选择或星号表达式
3文字国际化表达式
4URL表达式
变量表达式
变量表达式即OGNL表达式或Spring EL表达式(在Spring术语中也叫model attributes)。如下所示:
${sessionusername}
它们将以HTML标签的一个属性来表示:
<span th:text="${bookauthorname}"> <li th:each="book : ${books}">选择(星号)表达式
选择表达式很像变量表达式,不过它们用一个预先选择的对象来代替上下文变量容器(map)来执行,如下:
{customername}
被指定的object由th:object属性定义:
<div th:object="${book}">
<span th:text="{title}"></span>
</div>
文字国际化表达式
文字国际化表达式允许我们从一个外部文件获取区域文字信息(properties),用Key索引Value,还可以提供一组参数(可选)
#{maintitle}#{messageentrycreated(${entryId})}
可以在模板文件中找到这样的表达式代码:
<table>
<th th:text="#{headeraddresscity}"></th>
<th th:text="#{headeraddresscountry}"></th>
</table>
URL表达式
URL表达式指的是把一个有用的上下文或回话信息添加到URL,这个过程经常被叫做URL重写。
@{/order/list}
URL还可以设置参数:
@{/order/details(id=${orderId})}
相对路径:
@{/documents/report}
让我们看这些表达式:
<form th:action="@{/createOrder}"><a href="mainhtml" th:href="@{/main}">
变量表达式和星号表达有什么区别吗?
如果不考虑上下文的情况下,两者没有区别;星号语法评估在选定对象上表达,而不是整个上下文
什么是选定对象?就是父标签的值,如下:
<div th:object="${sessionuser}"><p>Name: <span th:text="{firstName}">Sebastian</span></p>
<p>Surname: <span th:text="{lastName}">Pepper</span></p>
<p>Nationality: <span th:text="{nationality}">Saturn</span></p>
</div>
这是完全等价于:
<div th:object="${sessionuser}"><p>Name: <span th:text="${sessionuserfirstName}">Sebastian</span></p>
<p>Surname: <span th:text="${sessionuserlastName}">Pepper</span></p>
<p>Nationality: <span th:text="${sessionusernationality}">Saturn</span></p>
</div>
当然,美元符号和星号语法可以混合使用:
<div th:object="${sessionuser}"><p>Name: <span th:text="{firstName}">Sebastian</span></p>
<p>Surname: <span th:text="${sessionuserlastName}">Pepper</span></p>
<p>Nationality: <span th:text="{nationality}">Saturn</span></p>
</div>
表达式支持的语法
字面(Literals)
文本文字(Text literals): 'one text', 'Another one!',…
数字文本(Number literals): 0, 34, 30, 123,…
布尔文本(Boolean literals): true, false
空(Null literal): null
文字标记(Literal tokens): one, sometext, main,…
文本 *** 作(Text operations)
字符串连接(String concatenation): +
文本替换(Literal substitutions): |The name is ${name}|
算术运算(Arithmetic operations)
二元运算符(Binary operators): +, -, , /, %
减号(单目运算符)Minus sign (unary operator): -
布尔 *** 作(Boolean operations)
二元运算符(Binary operators):and, or
布尔否定(一元运算符)Boolean negation (unary operator):!, not
比较和等价(Comparisons and equality)
比较(Comparators): >, <, >=, <= (gt, lt, ge, le)
等值运算符(Equality operators):==, != (eq, ne)
条件运算符(Conditional operators)
If-then: (if) (then)
If-then-else: (if) (then) : (else)
Default: (value) : (defaultvalue)
所有这些特征可以被组合并嵌套:
'User is of type ' + (${userisAdmin()} 'Administrator' : (${usertype} : 'Unknown'))### 1、定义方言Dialect
继承AbstractProcessorDialect
```
public class PagingDialect extends AbstractProcessorDialect {
private static final String DIALECT_NAME = "PagingDialect";//定义方言名称
public PagingDialect() {
super(DIALECT_NAME, "paging", StandardDialectPROCESSOR_PRECEDENCE);
//优先级:值必须为:StandardDialectPROCESSOR_PRECEDENCE
}
@Override
public Set getProcessors(String dialectPrefix) {
Set processors = new HashSet();
//添加我们定义的标签
processorsadd(new PagingTagProcessor(dialectPrefix));
processorsadd(new StandardXmlNsTagProcessor(TemplateModeHTML, dialectPrefix));
return processors;
}
}
```
### 2、添加自定义处理程序Processor
继承AbstractElementTagProcessor
```
public class PagingTagProcessor extends AbstractElementTagProcessor {
private static final String TAG_NAME = "pager";//标签名
private static final int PRECEDENCE = 10000;//优先级,必须是10000,否则读取不到标签的赋值
public PagingTagProcessor(String dialectPrefix) {
super(
TemplateModeHTML, // 此处理器将仅应用于HTML模式
dialectPrefix, // 要应用于名称的匹配前缀
TAG_NAME, // 标签名称:匹配此名称的特定标签
true, // 没有要应用于标签名称的前缀
null, // 无属性名称:将通过标签名称匹配
false, // 没有要应用于属性名称的前缀
PRECEDENCE // 优先(内部方言自己的优先)
);
}
@Override
protected void doProcess(ITemplateContext context,
IProcessableElementTag tag,
IElementTagStructureHandler structureHandler) {
String url = ((WebEngineContext) context)getRequest()getRequestURL()toString();
String queryString = ((WebEngineContext) context)getRequest()getQueryString();
String pageUrl = "";
if (StringUtilsisEmpty(queryString)) {
pageUrl = url + "page=";
} else {
pageUrl = url + "" + queryString + "&page=";
}
ApplicationContext appCtx = SpringContextUtilsgetApplicationContext(context);
//读取标签内容(当前页),注意标签必须是自带标签才能正常读取值
String pageIndexString = taggetAttributeValue("value");
//读取标签内容(页码大小)
String pageSizeString = taggetAttributeValue("size");
//读取标签内容(数据大小)
String totalSizeString = taggetAttributeValue("rows");
}
}
```
### 3、使用@Bean注解完成方言注入
在SpringBoot Application类中加入注入
```
@Bean
public PagingDialect paging() {
return new PagingDialect();
}
```
### 4、页面应用
```
```
在模板处理前,thymeleaf还会增加一个变量execInfo,比如${execInfotemplateName},${execInfonow}等。
数据访问模式:
${},变量引用模式,比如${myBeanproperty},如果用springDialect,则使用的是spring EL,如果不用spring,则用的ognl。
{},选择表达式,一般是th:object之后,直接取object中的属性。当没有选取对象时,其功能等同${},{firstName}也等同于${#objectfirstName},#object代表当前选择的对象。
@{}链接url的表达式。th:href="@{/xxx/aado(id=${oid})",会自动进行url-encoding的处理。@{}内部可以是需要计算的表达式,比如:
th:href=”@{'/details/'+${userlogin}(orderId=${oid})}"
#{},i18n,国际化。
需要注意的:
#{${welcomeMsgKey}(${sessionusername})}:i18n message支持占位。各个表达式支持嵌套。
表达式基本对象:
#ctx:context object
#root或者#vars
#locale
#>
一、
>
public class testOne {
public static void main(String[] args) {
CrowdfIe c = new CrowdfIe();
List<StoreIncome> sList= new ArrayList<StoreIncome>();
for(int i=0;i<10;i++){
StoreIncome s = new StoreIncome();
ssetDayIncome(BigDecimalvalueOf(i));
ssetAmount(i);
sListadd(s);
}
csetStoreIncome(sList);
int num=0;
BigDecimal num2=BigDecimalvalueOf(0);
for(StoreIncome a:cgetStoreIncome()){
num+=agetAmount();
num2=num2add(agetDayIncome());
}
Systemoutprintln(num);
Systemoutprintln(num2);
}
}
Thymeleaf的表达式可以在方括号中包含一个字符串或者一个表达式,但并不支持直接使用循环变量来在方括号中取值。
如果你需要根据元素下标取值,可以使用Thymeleaf中的内联 #numbers 序列,定义序列长度并使用 {#numberssequence(0, length - 1)} 来生成下标序列,然后使用 $序号 来获取对应元素的值,如下所示:
Copy code
<tr th:each="index : ${#numberssequence(0, datagetConsumeUp()size() - 1)}">
<td th:text="${datagetConsumeUp()get(index)get(region)}"></td>
</tr>
这里将元素下标的序列放在了 th:each 指令中循环遍历,在内部指令中使用 $ 符号获取对应下标的元素值。
例如,如果 datagetConsumeUp() 返回一个类似List<ConsumeUp>的对象,则每次循环遍历时 $index 的值分别是 0, 1, 2, , n,然后使用 datagetConsumeUp()get(index)get(region) 获取每个元素的属性值。
这样可以避免使用 占位符,也能够实现根据元素下标取值的功能。需要注意的是, #numberssequence() 中的长度参数应该为 datagetConsumeUp()size() - 1,以保证取到的下标序列与元素序列相对应。
以上就是关于Thymeleaf 中如何判断list集合中是否包含某个值全部的内容,包括:Thymeleaf 中如何判断list集合中是否包含某个值、thymeleaf前端表达式怎么写、thymeleaf 怎么使用js获取model等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)