spring-表达式语言-SpEL【转】
Spring表达式语言(Spring Expression Language)简称:SpEL
课程概要:

3.工作原理 在介绍Spring表达式语言工作原理之前,先介绍一下一些基本概念:
可以看到,我们使用了三种使用Spring表达式语言的方法来在配置文件中配置bean的参数。 接下来我们创建一个测试类来测试下各个bean的值 [java] view plain copy
另外一种配置Spring表达式语言的方法便是注解方式。 注解风格的配置: 基于注解风格的SpEL配置也非常简单,使用@Value注解来指定SpEL表达式,该注解可以放到字段、方法以及方法参数上。 我们使用示例来演示以下,首先修改配置文件 [html] view plain copy
声明了两个bean,其中一个使用属性注入的方式注入了特定的参数。由于使用了注解,所以得在配置文件中开启注解支持。 接下来编写对应的java代码 [java] view plain copy
通过结果可以看出:使用参数注入方式注入的值会覆盖Spring表达式所编写的值 二.Spring表达式语言的操作范围
SpEL表达式的首要目标是通过计算获得某个值,在计算这个值的过程中,会使用到其他的值并会对这些值进行操作,值的操作范围如下:





以上的代码等价于 [html] view plain copy
可以看到使用Spring表达式语言可以更方便的获取Bean的属性 SpEL引用Bean的方法 获取bean1的name值将其赋值给bean2的属性中 [html] view plain copy





接下来我们分别对这些运算符进行介绍
1.数值运算
数值运算符可以对SpEL表达式中的值进行基础数学运算
接下来我们来示例演示一下,首先先创建一个基本Bean用来存放待运算的数据信息
[java] view plain copy


在配置文件中使用SpEL表达式语言运算符来对相应的数据进行运算赋值操作 [html] view plain copy

3.逻辑运算符
逻辑运算符用于对两个比较表达式进行求值,或者对某些布尔类型的值进行非运算,下表列出了SpEL当中的所有逻辑运算符
4.条件运算
当某个条件为true时,SpEL的表达式的求值结果是某个值;如果该条件为false时,它到的求值结果是另一个值时,可以使用SpEL的三元运算符。(?:):
SpEL的三元运算符的使用和Java相同,其主要作用是判断一个值是否为null,并对其进行处理,如下所示:
[html] view plain copy



四.Spring表达式语言的集合操作 SpEL可以引用集合中的某个成员,就像在Java里操作一样,同样具有基于属性值来过滤集合成员的能力。SpEl对集合的操作主要包括以下几种: 元素在Spring里配置一个包含SpelCity对象的List集合,示例如下:
我们首先定义一个SpelCity类,如下所示:
[java] view plain copy






总结: 虽然SpEL表达式语言非常强大,但是SpEL表达式语言只是一个字符串,并没有id之类的编译支持,所以并不建议深入学习SpEL表达式,只需了解知道即可。
- Spring表达式语言的入门介绍
- Spring表达式语言的操作范围
- Spring表达式语言的运算符
- Spring表达式语言的集合操作
- 基本表达式
- 类相关表达式
- 集合相关表达式
- 其他表达式
- public class SpelTest {
- public static void main(String[] args){
- //创建解析器
- ExpressionParser parser=new SpelExpressionParser();
- //解析表达式
- Expression expression=
- parser.parseExpression("('Hello'+'World').concat(#end)");
- //构造上下文
- EvaluationContext context=new StandardEvaluationContext();
- //为end参数值来赋值
- context.setVariable("end","!");
- //打印expression表达式的值
- System.out.println(expression.getValue(context));
- }
- }
3.工作原理 在介绍Spring表达式语言工作原理之前,先介绍一下一些基本概念:
- 表达式:表达式语言的核心,即“干什么”
- 解析器:用于将字符串表达式解析为表达式对象,即“谁来干”
- 上下文:表达式语言执行的环境,该环境可能定义变量,可能定义自定义函数,也可以提供类型转换等等,即“在哪里干”
- 根对象即活动上下文对象:根对象是默认的活动上下文对象,活动上下文对象表示了当前操作对象。即“对谁干”
- ExpressionParser接口:表示解析器
- EvaluationContext接口:表示上下文环境
- Expression接口:表示的是表达式对象
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="
- http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans.xsd
- ">
- <bean id="world" class="java.lang.String">
- <constructor-arg value="#{' World!'}"/>
- bean>
- <bean id="hello1" class="java.lang.String">
- <constructor-arg value="#{'Hello '}#{world}"/>
- bean>
- <bean id="hello3" class="java.lang.String">
- <constructor-arg value="#{'Hello '+@world}"/>
- bean>
- beans>
可以看到,我们使用了三种使用Spring表达式语言的方法来在配置文件中配置bean的参数。 接下来我们创建一个测试类来测试下各个bean的值 [java] view plain copy
- public class XmlExpression {
- public static void main(String[] args){
- ApplicationContext ctx=
- new FileSystemXmlApplicationContext("src/conf/conf-spel.xml");
- String hello1=ctx.getBean("hello1",String.class);
- String hello2=ctx.getBean("hello2",String.class);
- String hello3=ctx.getBean("hello3",String.class);
- System.out.println(hello1);
- System.out.println(hello2);
- System.out.println(hello3);
- }
- }
另外一种配置Spring表达式语言的方法便是注解方式。 注解风格的配置: 基于注解风格的SpEL配置也非常简单,使用@Value注解来指定SpEL表达式,该注解可以放到字段、方法以及方法参数上。 我们使用示例来演示以下,首先修改配置文件 [html] view plain copy
- <context:annotation-config/>
- <bean id="hellobean1" class="cn.lovepi.chapter05.spel.AnnoExpression"/>
- <bean id="hellobean2" class="cn.lovepi.chapter05.spel.AnnoExpression">
- <property name="value" value="haha"/>
- bean>
声明了两个bean,其中一个使用属性注入的方式注入了特定的参数。由于使用了注解,所以得在配置文件中开启注解支持。 接下来编写对应的java代码 [java] view plain copy
- public class AnnoExpression {
- @Value("#{'Hello '+world}")
- private String value;
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- public static void main(String[] args){
- ApplicationContext ctx=
- new FileSystemXmlApplicationContext("src/conf/conf-spel.xml");
- AnnoExpression hellobean1=ctx.getBean("hellobean1",AnnoExpression.class);
- AnnoExpression hellobean2=ctx.getBean("hellobean2",AnnoExpression.class);
- System.out.println(hellobean1.getValue());
- System.out.println(hellobean2.getValue());
- }
- }
通过结果可以看出:使用参数注入方式注入的值会覆盖Spring表达式所编写的值 二.Spring表达式语言的操作范围
SpEL表达式的首要目标是通过计算获得某个值,在计算这个值的过程中,会使用到其他的值并会对这些值进行操作,值的操作范围如下:
- 字面值:最简单的一种值,即基本类型的表达式。包含的类型是字符串、数字类型(int、lang、float、double、boolean、null)字符串使用单引号分割,使用反斜杠字符转义。
- Bean以及Bean的属性或方法:通过id来引入其他的bean或者bean的属性或方法
- 类的方法和常量:在SpEL中是由T运算符调用类的方法和常量
- public class SpelLiteral {
- private int count;
- private String message;
- private float frequency;
- private float capacity;
- private String name1;
- private String name2;
- private boolean enabled;
- public int getCount() {
- return count;
- }
- public void setCount(int count) {
- this.count = count;
- }
- public String getMessage() {
- return message;
- }
- public void setMessage(String message) {
- this.message = message;
- }
- public float getFrequency() {
- return frequency;
- }
- public void setFrequency(float frequency) {
- this.frequency = frequency;
- }
- public float getCapacity() {
- return capacity;
- }
- public void setCapacity(float capacity) {
- this.capacity = capacity;
- }
- public String getName1() {
- return name1;
- }
- public void setName1(String name1) {
- this.name1 = name1;
- }
- public String getName2() {
- return name2;
- }
- public void setName2(String name2) {
- this.name2 = name2;
- }
- public boolean isEnabled() {
- return enabled;
- }
- public void setEnabled(boolean enabled) {
- this.enabled = enabled;
- }
- }
- <bean id="spelliteral" class="cn.lovepi.chapter05.spel.SpelLiteral">
- <property name="count" value="#{5}"/>
- <property name="message" value="The value is #{5}"/>
- <property name="frequency" value="#{89.7}"/>
- <property name="capacity" value="#{1e4}"/>
- <property name="name1" value="#{'wang'}"/>
- <property name="name2" value='#{"wang"}'/>
- <property name="enabled" value="#{false}"/>
- bean>
- public class SpelMain {
- public static void main(String[] args){
- testSpelLiteral();
- }
- private static void testSpelLiteral(){
- ApplicationContext ctx=
- new FileSystemXmlApplicationContext("src/conf/conf-spel.xml");
- SpelLiteral literal=ctx.getBean("spelliteral",SpelLiteral.class);
- System.out.println("count= "+literal.getCount());
- System.out.println("message= "+literal.getMessage());
- System.out.println("frequency= "+literal.getFrequency());
- System.out.println("capacity= "+literal.getCapacity());
- System.out.println("name1= "+literal.getName1());
- System.out.println("name2= "+literal.getName2());
- System.out.println("enabled= "+literal.isEnabled());
- }
- }
- <property name="bean2" value="#{bean1}"/>
- <property name="bean2" ref="bean1"/>
- <bean id="bean2" class="cn.lovepi.***">
- <property name="name" value="#{bean1.name}"/>
- bean>
以上的代码等价于 [html] view plain copy
- Bean2 bean2=new Bean2();
- bean2.setName(bean1.getName());
可以看到使用Spring表达式语言可以更方便的获取Bean的属性 SpEL引用Bean的方法 获取bean1的name值将其赋值给bean2的属性中 [html] view plain copy
- <property name="name" value="#{bean1.getName()}/>
- <property name="name" value="#{bean1.getName().toUpperCase()}/>
- <property name="name" value="#{bean1?.getName().toUpperCase()}/>
- public class SpelClass {
- private float pi;
- private float randomNumber;
- public float getPi() {
- return pi;
- }
- public void setPi(float pi) {
- this.pi = pi;
- }
- public float getRandomNumber() {
- return randomNumber;
- }
- public void setRandomNumber(float randomNumber) {
- this.randomNumber = randomNumber;
- }
- }
- <bean id="spelClass" class="cn.lovepi.chapter05.spel.SpelClass">
- <property name="pi" value="#{T(java.lang.Math).PI}"/>
- <property name="randomNumber" value="#{T(java.lang.Math).random()}"/>
- bean>
- private static void testSpelClass(){
- ApplicationContext ctx=
- new FileSystemXmlApplicationContext("src/conf/conf-spel.xml");
- SpelClass spelClass=ctx.getBean("spelClass",SpelClass.class);
- System.out.println("PI="+spelClass.getPi());
- System.out.println("randomNumber="+spelClass.getRandomNumber());
- }
| 运算符类型 | 运算符示例 |
| 数值运算 | +、-、*、/、%、^(乘方运算) |
| 比较运算 | <(lt)、>(gt)、==(eg)、<=(le)、>=(ge) |
| 逻辑运算 | and、or、not、| |
| 条件运算 | ?:(ternary)、?:(Elvis) |
| 正则表达式 | matches |
- public class SpelCounter {
- private float total;
- private float count;
- public float getTotal() {
- return total;
- }
- public void setTotal(float total) {
- this.total = total;
- }
- public float getCount() {
- return count;
- }
- public void setCount(float count) {
- this.count = count;
- }
- }
- public class SpelMath {
- private float ajustedAcount;
- private float circumFference;
- private float average;
- private float remainder;
- private float area;
- private String fullName;
- public float getAjustedAcount() {
- return ajustedAcount;
- }
- public void setAjustedAcount(float ajustedAcount) {
- this.ajustedAcount = ajustedAcount;
- }
- public float getCircumFference() {
- return circumFference;
- }
- public void setCircumFference(float circumFference) {
- this.circumFference = circumFference;
- }
- public float getAverage() {
- return average;
- }
- public void setAverage(float average) {
- this.average = average;
- }
- public float getRemainder() {
- return remainder;
- }
- public void setRemainder(float remainder) {
- this.remainder = remainder;
- }
- public float getArea() {
- return area;
- }
- public void setArea(float area) {
- this.area = area;
- }
- public String getFullName() {
- return fullName;
- }
- public void setFullName(String fullName) {
- this.fullName = fullName;
- }
- }
在配置文件中使用SpEL表达式语言运算符来对相应的数据进行运算赋值操作 [html] view plain copy
- <bean id="spelCounter" class="cn.lovepi.chapter05.spel.SpelCounter">
- <property name="count" value="#{10}"/>
- <property name="total" value="#{100}"/>
- bean>
- <bean id="spelMath" class="cn.lovepi.chapter05.spel.SpelMath">
- <property name="ajustedAcount" value="#{spelCounter.total+53}"/>
- <property name="circumFference" value="#{2*T(java.lang.Math).PI*spelCounter.total}"/>
- <property name="average" value="#{spelCounter.total/spelCounter.count}"/>
- <property name="remainder" value="#{spelCounter.total%spelCounter.count}"/>
- <property name="area" value="#{T(java.lang.Math).PI * spelCounter.total^2}"/>
- <property name="fullName" value="#{'icarus'+' '+'wang'}"/>
- bean>
- private static void testSpelMath(){
- ApplicationContext ctx=
- new FileSystemXmlApplicationContext("src/conf/conf-spel.xml");
- SpelMath math=ctx.getBean("spelMath",SpelMath.class);
- System.out.println("AjustedAcount= "+math.getAjustedAcount());
- System.out.println("CircumFference= "+math.getCircumFference());
- System.out.println("Average= "+math.getAverage());
- System.out.println("Area= "+math.getArea());
- System.out.println("Remainder= "+math.getRemainder());
- System.out.println("FullName= "+math.getFullName());
- }
- <property name="name" value="#{person.name!=null ? person.name : 'icarus'}"/>
- <property name="name" value="#{person.name!=null ?: 'icarus'}"/>
- <property name="validEmail" value="#{admin.email matches '[0-9A-Za-z_%.*+-]+@[0-9A-Za-z.-]+\\.com'}"/>
四.Spring表达式语言的集合操作 SpEL可以引用集合中的某个成员,就像在Java里操作一样,同样具有基于属性值来过滤集合成员的能力。SpEl对集合的操作主要包括以下几种:
- 访问集合成员
- 查询集合成员
- 投影集合
- public class SpelCity{
- private String name;
- private String state;
- private int population;
- }
- <util:list id="cities">
- <bean class="cn.lovepi.***.SpelCity">
- <p:namep:name="Chicago" p:state="IL" p:population="2853114">
- <bean class="cn.lovepi.***.SpelCity">
- <p:namep:name="LasCryces" p:state="NM" p:population="91865">
- util:list>
- <property name="bigCities" value="#{cities.?[population gt 100000]}"/>
- .^[]:查询符合条件的第一个元素
- .$[]:查询符合条件的最后一个元素
- <property name="cityName1" value="#{cities.![name]}}"/>
- <property name="cityName2" value="#{cities.![name+','+state]}}"/>
- <property name="cityName3" value="#{cities.?[population gt 100000].![name+','+state]}}"/>
总结: 虽然SpEL表达式语言非常强大,但是SpEL表达式语言只是一个字符串,并没有id之类的编译支持,所以并不建议深入学习SpEL表达式,只需了解知道即可。