<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:lang="http://www.springframework.org/schema/lang"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-4.0.xsd"><bean id="address" class="com.atguigu.spring.beans.spel.Address"><!-- 使用spel为属性赋一个字面值 --><property name="city" value="#{'BerJing'}"></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><!-- 使用Spel引用静态属性 --><property name="tyrePerimeter" value="#{T(java.lang.Math).PI*80}"></property></bean><bean id="person" class="com.atguigu.spring.beans.spel.Person"><property name="name" value="朱迪"></property><!-- 使用SpEL来应用其他的Bean --><property name="car" value="#{car}"></property><!-- 使用SpEL来应用其他的Bean的属性 --><property name="city" value="#{address.city}"></property><!-- 在SpEL中使用运算符 --><property name="info" value="#{car.price>300000?'金领':'白领 '}"></property></bean>
</beans>