Spring4表达式语言:SpEL

  • Spring表达式语言(简称SpEL):是一个支持运行时查询和操作对象图的强大的表达式语言。
  • 语法类似于EL:SpEL使用#{..}作为定界符,所有在大括号中的字符都被认为是SpEL
  • SpEL为bean的属性进行动态赋值提供了便利

  • 通过SpEL可以实现:

           ——通过bean的id对bean进行引用

           ——调用方法以及引用对象中的属性

           ——计算表达式的值

           ——正则表达式的匹配


SpEL:引用Bean,属性和方法

  • 引用其他对象:

           <!-- 通过value属性和SpEL配置Bean之间的应用关系 -->
	   <property name="prefix" value="#{prefixGenerator}"></property>

  •  引用其他对象的属性

           <!-- 通过value属性和SpEL配置suffix属性值为另一个Bean的suffix属性值 -->
           <property name="suffix" value="#{sequenceGenerator2.suffix}"></property>

  •  调用其他方法,还可以链式操作

  

           <!-- 通过value属性和SpEL配置suffix属性为另一个bean的方法返回值 -->
           <property name="suffix" value="#{sequenceGenerator2.toString()}"></property>
           <!-- 方法的链式调用 -->
           <property name="suffix" value="#{sequenceGenerator2.toString()。toUpperCase()}"></property>

  • 调用静态方法或静态属性值:通过T()调用一个类的静态方法,它将返回一个Class Object,然后再调用响应的方法或属性:

           <property name="initValue" value="#{T(java.lang.Math).PI}"></property>


实例:

beans-spel.xml:

<?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="address" class="com.atguigu.spring.beans.spel.Address">
	   <property name="city" value="#{'BeiJing'}"></property>
	   <property name="street" value="WuDaoKou"></property>
	</bean>
	
	<bean id="car" class="com.atguigu.spring.beans.spel.Car">
	   <property name="brand" value="Audi"></property>
	   <property name="price" value="500000"></property>
	   <property name="tyrePerimeter" value="#{T(java.lang.Math).PI*80}"></property>
	</bean>
	
	<bean id="person" class="com.atguigu.spring.beans.spel.Person">
	  <property name="car" value="#{car}"></property>
	  <property name="city" value="#{address.city}"></property>
	  <property name="info" value="#{car.price > 300000 ? '金领' : '白领'}"></property>
	  <property name="name" value="Tom"></property>
	</bean>
</beans>



你可能感兴趣的:(Spring4表达式语言:SpEL)