Spring初学之Spel初配
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring初学之Spel初配相关的知识,希望对你有一定的参考价值。
Spel又时候可以方便我们为bean的属性赋值,如下配置文件就是常用的一些使用:
<?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="spring.beans.spel.Address"> <!-- 使用SpEL设置字面值 --> <property name="city" value="#{‘重庆‘}"></property> <property name="more" value="梁平"></property> </bean> <bean id="car" class="spring.beans.spel.Car"> <property name="carName" value="#{‘奥迪‘}"></property> <property name="price" value="#{300000}"></property> <!-- 用SpEL引用类中的静态方法 --> <property name="tyrePermiter" value="#{T(java.lang.Math).PI*80}"></property> </bean> <bean id="person" class="spring.beans.spel.Person"> <!-- 使用SpEL设置字面值 --> <property name="name" value="#{‘Tom‘}"></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>
以上是关于Spring初学之Spel初配的主要内容,如果未能解决你的问题,请参考以下文章
Spring表达式语言 之 5.1 概述 5.2 SpEL基础(拾叁)