Spring 的 SpEL

来源:互联网 发布:指南针炒股软件好用吗 编辑:程序博客网 时间:2024/05/16 06:25

<?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="cardata" class="com.test.spring.qiche">     <property name="carname" value="我想要一辆奔驰!"></property>     <property name="cunkuan" value="280000"></property>   </bean>      <bean id="getPersonSpel" class="com.test.spring.spel.personSpel">       <property name="username" value="badMonekey"></property>       <!-- 可使用字面值 -->       <property name="age" value="#{'24岁'}"></property>       <!-- 使用spel引用类的静态属性 -->       <property name="money" value="#{T(java.lang.Math).PI * 20}"></property>       <!-- SPEL也可引用其他bean -->       <property name="dream" value="#{cardata}"></property>       <!-- SPEL中使用运算符 运算的数据类型必须是数值类型 -->       <property name="info" value="#{cardata.cunkuan >300000 ?'金领':'白领'}"></property>   </bean>            </beans>




0 0
原创粉丝点击