Spring笔记 - Spring Expression Language (SpEL表达式)

标签: spring 笔记 spring | 发表时间:2013-06-19 16:17 | 作者:tanxiang21
出处:http://blog.csdn.net

基本表达式

 

数字5       <property name="count" value="#{5}"/>

联合方式  <property name="message" value="The value is #{5}"/>

浮点型      <property name="frequency" value="#{89.7}"/>

科学表达式10000.0  <property name="capacity" value="#{1e4}"/>

String   <property name="name" value="#{'Chuck'}"/> <property name='name' value='#{"Chuck"}'/>

Boolean <property name="enabled" value="#{false}"/>

引用Bean  <property name="instrument" value="#{saxophone}"/> 等价 <property name="instrument" ref="saxophone"/>

引用Bean属性 <property name="song" value="#{kenny.song}"/>

引用Bean方法 <property name="song" value="#{songSelector.selectSong()}"/>

进阶一 <property name="song" value="#{songSelector.selectSong().toUpperCase()}"/>

进阶二 防空指针 <property name="song" value="#{songSelector.selectSong()?.toUpperCase()}"/> 防空指针

使用静态类 T(java.lang.Math)

使用静态属性 <property name="multiplier" value="#{T(java.lang.Math).PI}"/>

使用静态方法 <property name="randomNumber" value="#{T(java.lang.Math).random()}"/>

 

 

运算表达式

 

+ <property name="adjustedAmount" value="#{counter.total+42}"/>

- <property name="adjustedAmount" value="#{counter.total-20}"/>

* <property name="circumference"  value="#{2 *T(java.lang.Math).PI*circle.radius}"/>

/  <property name="average" value="#{counter.total/counter.count}"/>

% <property name="remainder" value="#{counter.total%counter.count}"/>

^ <property name="area" value="#{T(java.lang.Math).PI*circle.radius^2}"/>

+ overloaded  <property name="fullName value="#{performer.firstName + '  ' + performer.lastName}"/>

==  eq equal <property name="equal" value="#{counter.total==100}"/>

<=  <propertyname="hasCapacity"value="#{counter.total le 100000}"/>

Equal == eq
Less than < lt
Less than or equals <= le
Greater than > gt
Greater than or equals >= ge

逻辑表达式

and A logical AND operation; both sides must evaluate true for the expression to be true
or A logical OR operation; either side must evaluate true for the expression to be true
not or ! A logical NOT operation; negates the target of the operation

<property name="largeCircle" value="#{shape.kind =='circle'andshape.perimeter gt 10000}"/>

<property name="outOfStock" value="#{!product.available}"/>

条件表达式 ?:  <property name="instrument" value="#{songSelector.selectSong()=='JingleBells'?piano:saxophone}"/>

<propertyname="song"  value="#{kenny.song !=null?kenny.song:'Greensleeves'}"/> 

等价 Elvis operator  <propertyname="song"value="#{kenny.song?:'Greensleeves'}"/>

正则表达式 <property name="validEmail"value= "#{admin.email matches '[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.com'}"/>

 

 

集合处理

 

<util:listid="cities">
      <bean class="com.habuma.spel.cities.City"
          p:name="Chicago"p:state="IL"p:population="2853114"/>
     <bean class="com.habuma.spel.cities.City"
          p:name="LasCruces"p:state="NM"p:population="91865"/>
</util:list>

List  <property name="chosenCity" value="#{cities[2]}"/>

进阶 <property name="chosenCity" value="#{cities[T(java.lang.Math).random()*cities.size()]}"/>

Map <property name="chosenCity" value="#{cities['Dallas']}"/>

Properties <util:properties id="settings" location="classpath:settings.properties"/>

Properties <property name="accessToken" value="#{settings['twitter.accessToken']}"/>

systemEnvironment <property name="homePath" value="#{systemEnvironment['HOME']}"/>

systemProperties <property name="homePath" value="#{systemProperties['application.home']}"/>

String  s  'This is a test'[3]

.?[]  条件选择成员 <property name="bigCities" value="#{cities.?[population gt 100000]}"/>

.^[] and .$[], for 第一个和最后一个匹配成员 <property name="aBigCity" value="#{cities.^[population gt 100000]}"/>

.![] 抽取集合 List  <property name="cityNames" value="#{cities.![name]}"/>

进阶  <property name="cityNames" value="#{cities.![name+' , '+state]}"/>

进阶 <property name="cityNames" value="#{cities.?[population gt 100000].![name+' ,'+state]}"/>

 

作者:tanxiang21 发表于2013-6-19 16:17:25 原文链接
阅读:36 评论:0 查看评论

相关 [spring 笔记 spring] 推荐:

Spring笔记 - Spring Expression Language (SpEL表达式)

- - CSDN博客架构设计推荐文章
数字5       . 联合方式  . 浮点型      .

Spring Batch学习笔记

- - 博客园_首页
  和传统的批处理(Batch Processing)相比,Spring Batch虽然有很大的不同,但是归根结底,都是顺序地执行一些列任务. 你用Spring Batch可以读取一个TXT文件的内容,然后将处理之后的数据放到数据库里,反之亦然.    Spring Batch任务处理的核心组件有Job、Step、Tasklet、JobLuncher和JobRepository等.

spring面试笔记(转)

- - CSDN博客推荐文章
一、spring工作原理:. 1.spring mvc请所有的请求都提交给DispatcherServlet,它会委托应用系统的其他模块负责负责对请求进行真正的处理工作. 2.DispatcherServlet查询一个或多个HandlerMapping,找到处理请求的Controller. 3.DispatcherServlet请请求提交到目标Controller.

Spring Data JPA,基础学习笔记.

- - ITeye博客
最好先学习 JPA 方面的知识....在这里使用的是 Hibernate. 也已经使用了一段时间,看什么都不如看官方文档,我这里也只是写个笔记记录一下,如果能帮助到其他人,很开心 .算是个 demoshow 吧.这里也只写了一些我觉得比较有用的地方.其他一些使用知识,请参见官方文档:http://static.springsource.org/spring-data/data-jpa/docs/current/reference/html/.

spring的事务管理笔记

- - 企业架构 - ITeye博客
首先,事务管理是保证数据操作的事务性 ACID(即原子性、一致性、隔离性、持久性).        对于使用支持事务管理的数据库时,普通的jdbc的连接没用配置事务也可以保存变更,原因在于连接的属性autocommit设置了true,即自动提交了事务.        而对于某些数据库本身没有对事务的支持,那么事务管理也是一纸空谈没有必要进行配置(有例外),如MySQL的MyISAM没有事务管理的支持.

spring cloud stream使用笔记 - 简书

- -
以前我们在spring boot中构建一个消息驱动的微服务应用,通常会使用rabbitMQ或是kafka来做消息中间件,应用中均需代码实现具体消息中间件的通信细节. 此时如果再更换一个新的消息中间件,这会我们又需新增这些通信代码,写起来会比较繁琐,而stream出现就是为了简化这一过程. 它是一个构建消息驱动的微服务应用的框架.

Spring详解

- - CSDN博客架构设计推荐文章
Spring是一个开源的控制反转(Inversion of Control ,IoC)和面向切面(AOP)的容器框架.它的主要目的是简化企业开发.. PersonDaoBean 是在应用内部创建及维护的. 所谓控制反转就是应用本身不负责依赖对象的创建及维护,依赖对象的创建及维护是由外部容器负责的.

Spring定时

- - 行业应用 - ITeye博客
spring的定时任务配置分为三个步骤:. . . . . .

简单Spring+hessian

- - Web前端 - ITeye博客
简单的Spring+hessian. dist\modules里面的 spring-webmvc.jar . lib\caucho 里面的hessian-3.1.3.jar. 里面有个接口interface:. 建立一个model层:(实现Serializable接口). 在WEB-INF下面创建一个remoting-servlet.xml:.

Spring MVC 和 Struts2

- - CSDN博客架构设计推荐文章
Web层面的框架学习了三个Struts1和2,SpringMVC,那他们之间肯定存在一个优劣和适用的环境,Struts1和2的异同点我已经做过对比《 Struts1和Struts2》,这篇将对比下Struts2和SpringMVC的异同,下面数据基本来源于网络,本人是搜集整理所得,供大家参考. 一个项目使用什么样的技术,决定的因素很多,我所能想到的有:对系统的性能、开发的效率、团队学习的成本、业务场景等,下面尽量从这几个方面入手,来分析比较下他们之间存在的优劣.