Spring spel表达式使用方法示例
spring in action第三版读书笔记
spring3.0引入了spring expression language(spel)语言,通过spel我们可以实现
1.通过bean的id对bean进行引用
2.调用方法以及引用对象中的属性
3.计算表达式的值
4.正则表达式的匹配
5.集合的操作
spel最终的目标是得到表达式计算之后的值,这些表达式可能是列举的一些值,引用对象的某些属性,或者是类中的某些常量,复杂的spel表达式通常都是由一些简单的元素构成的。最简单的仅仅是得到一些给出元素的值,例如:
<property name="count" value="the value is #{5}"/>。这种情况貌似很傻,根本就不需要用到spel,但是复杂的表达式都是由简单的构成的
对其他bean的引用
通过spel我们也可以对context中其他的bean进行引用
<property name="instrument" value="#{saxophone}"/>
等同于
<property name="instrument" ref="saxophone"/>
引用另外一个id为saxophone的bean作为instrument的值
对其他bean中某个属性的引用
<bean id="carl" class="com.springinaction.instrumentalist"> <property name="song" value="#{kenny.song}"/> </bean>
取id为kenny的bean的song字段的作为song的value
对其他bean中某个方法的引用
<property name="song" value="#{songselector.selectsong().touppercase()}"/>
调用id为songselector的bean的selectsong()方法,使用其返回值作为song的值,这也带来一个问如果selectsong()方法返回一个null,那么会抛出一个空指针异常
<property name="song" value="#{songselector.selectsong()?.touppercase()}"/>,表达式(?.)可以确保在selectsong()返回不为空的情况下调用touppercase()方法,如果返回空那么不继续调用后面的方法
对类进行引用
如果某个类是外部类,而不是spring中定义的bean,那么怎么进行引用呢?
使用表达式t(),例如:
<property name="randomnumber" value="#{t(java.lang.math).random()}"/>
spel计算表达式的值
spel表达式支持各种各样的运算符,我们可以可以运用这些运算符来计算表达式的值
使用spel从集合中筛选元素:
使用spring的util namespace中的元素<util:list>定义一个集合
<util:list id="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="atlanta" p:state="ga" p:population="537958"/> <bean class="com.habuma.spel.cities.city" p:name="dallas" p:state="tx" p:population="1279910"/> <bean class="com.habuma.spel.cities.city" p:name="houston" p:state="tx" p:population="2242193"/> </util:list>
使用spel对集合进行筛选
<property name="chosencity" value="#{cities[2]}"/>,
[]操作符也可以对map进行筛选,假设citis是一个map类型<property name="chosencity" value="#{cities["keyname"]}"/>
[]对properties类型进行操作
<util:properties id="settings"
location="classpath:settings.properties"/>使用<util:properties>标签读取一个properties文件
<property name="accesstoken" value="#{settings['twitter.accesstoken']}"/>
基于某个属性对集合中的元素进行过滤 <property name="bigcitis" value="#{cities.?[population gt 10000]}"/>选中人口大一10000的cities中的元素作为bigcitis的值,同操作符(.?[])类似, 操作符(.^[]选取满足要求的第一个元素, .$[]选取满足要求的最后一个) 选中已有集合中元素的某一个或几个属性作为新的集合 <property name="citynames" value="#{cities.![name + ", " + state]}"/>
总结
以上就是本文关于spring spel表达式使用方法示例的全部内容,希望对大家有所帮助。