強大的Spring的EL表示式
一、第一個Spring EL例子—— HelloWorld Demo
這個例子將展示如何利用SpEL注入String、Integer、Bean到屬性中。
1) Spring El的依賴包
首先在Maven的pom.xml中加入依賴包,這樣會自動下載SpEL的依賴。
檔案:pom.xml
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId >
<version>3.2.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.2.4.RELEASE</version>
</dependency>
</dependencies >
2)Spring Bean
接下來寫兩個簡單的Bean,稍後會用SpEL注入value到屬性中。
Item.java如下:
package com.spring.hello;
public class Item {
private String name;
private int total;
//getter and setter...
}
Customer.java如下:
package com.spring.hello;
public class Customer {
private Item item;
private String itemName;
@Override
public String toString() {
return "itemName=" +this.itemName+" "+"Item.total="+this.item.getTotal();
}
//getter and setter...
}
3) Spring EL——XML
SpEL格式為#{ SpEL expression },xml配置見下。
檔案:Spring-EL.xml
<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-3.0.xsd">
<bean id="itemBean" class="com.spring.hello.Item">
<property name="name" value="itemA" />
<property name="total" value="10" />
</bean>
<bean id="customerBean" class="com.spring.hello.Customer">
<property name="item" value="#{itemBean}" />
<property name="itemName" value="#{itemBean.name}" />
</bean>
</beans>
註解:
- #{itemBean}——將itemBean注入到customerBean的item屬性中。
- #{itemBean.name}——將itemBean 的name屬性,注入到customerBean的屬性itemName中。
4) Spring EL——Annotation
SpEL的Annotation版本。
注意:要在Annotation中使用SpEL,必須要通過annotation註冊元件。如果你在xml中註冊了bean和在java class中定義了@Value,@Value在執行時將失敗。
Annotation版本就相當於直接使用Java程式碼來配置,XML憎恨者會對這樣的特性有著極大的興趣。
Item.java如下:
package com.spring.hello;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component("itemBean")
public class Item {
@Value("itemA")//直接注入String
private String name;
@Value("10")//直接注入integer
private int total;
//getter and setter...
}
Customer.java如下:
package com.spring.hello;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component("customerBean")
public class Customer {
@Value("#{itemBean}")
private Item item;
@Value("#{itemBean.name}")
private String itemName;
//getter and setter...
}
Xml中配置元件自動掃描
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="com.spring.hello" />
</beans>
在Annotation模式中,用@Value定義EL。在這種情況下,直接注入一個String和integer值到itemBean中,然後注入itemBean到customerBean中。
5) 輸出結果
App.java如下:
package com.spring.hello;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class App {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("Spring-EL.xml");
Customer obj = (Customer) context.getBean("customerBean");
System.out.println(obj);
}
}
輸出結果如下:itemName=itemA item.total=10
二、 Spring EL Method Invocation——SpEL 方法呼叫
SpEL允許開發者用El執行方法函式,並且允許將方法返回值注入到屬性中。
1)Spring EL Method Invocation之Annotation版本
此段落演示用@Value註釋,完成SpEL方法呼叫。
Customer.java如下:
package com.spring.hello;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component("customerBean")
public class Customer {
@Value("#{'jinkai'.toUpperCase()}")
private String name;
@Value("#{priceBean.getSpecialPrice()}")
private double amount;
//getter and setter...省略
@Override
public String toString() {
return "Customer [name=" + name + ", amount=" + amount + "]";
}
}
Price.java如下:
package com.spring.hello;
import org.springframework.stereotype.Component;
@Component("priceBean")
public class Price {
public double getSpecialPrice() {
return new Double(99.99);
}
}
輸出結果:Customer[name=jinkai,amount=99.99]
上例中,以下語句呼叫toUpperCase()方法
@Value(“#{‘jinkai’.toUpperCase()}”)
private String name;
上例中,以下語句呼叫priceBean中的getSpecialPrice()方法
@Value(“#{priceBean.getSpecialPrice()}”)
private double amount;
2) Spring EL Method Invocation之XML版本
在XMl中配置如下,效果相同
<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-3.0.xsd">
<bean id="customerBean" class="com.spring.hello.Customer">
<property name="name" value="#{'shiyanlou'.toUpperCase()}" />
<property name="amount" value="#{priceBean.getSpecialPrice()}" />
</bean>
<bean id="priceBean" class="com.spring.hello.Price" />
</beans>
三、Spring EL Operators——SpEL 操作符
Spring EL 支援大多數的數學操作符、邏輯操作符、關係操作符。
- 關係操作符
包括:等於 (==, eq),不等於 (!=, ne),小於 (<, lt),,小於等於(<= , le),大於(>, gt),大於等於 (>=, ge) (注意:Xml配置如下,注意:應該用“<;”代替小於號“<”,“<=”用“le”替換 ) - 邏輯操作符
包括:and,or,and not(!) - 數學操作符
包括:加 (+),減 (-),乘 (*),除 (/),取模 (%),冪指數 碼如下:
Spring EL 三目操作符condition?true:false
比如:
@Value("#{itemBean.qtyOnHand < 100 ? true : false}")
xml版本
<property name="warning" value="#{itemBean.qtyOnHand < 100 ? true : false}" />
Spring EL 支援從List、Map集合取值。
比如:
//get map where key = 'MapA'
@Value("#{testBean.map['MapA']}")
private String mapA;
//get first value from list, list is 0-based.
@Value("#{testBean.list[0]}")
private String list;
xml版本
<property name="mapA" value="#{testBean.map['MapA']}" />
<property name="list" value="#{testBean.list[0]}" />