Spring EL hello world範例


Spring EL與OGNL和JSF EL相似,計算評估或在bean建立時執行。此外,所有的Spring表示式都可以通過XML或註解。
在本教學中,我們將學習如何使用Spring表示式語言(SpEL),注入字串,整數,Bean到屬性,無論是在XML和注釋。

1. Spring Beans

兩個簡單Bean,後來利用 SpEL 注入值到屬性,在 XML 和 注釋。
package com.yiibai.core;

public class Customer {

	private Item item;

	private String itemName;

}
package com.yiibai.core;

public class Item {

	private String name;

	private int qty;

}

3. Spring EL以XML形式

使用 SpEL關閉的#{ SpEL expression }括號,請參閱XML bean定義檔案下面的例子。
<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.yiibai.core.Item">
		<property name="name" value="itemA" />
		<property name="qty" value="10" />
	</bean>

	<bean id="customerBean" class="com.yiibai.core.Customer">
		<property name="item" value="#{itemBean}" />
		<property name="itemName" value="#{itemBean.name}" />
	</bean>
	
</beans>
  1. #{itemBean} – 注入「itemBean」到「customerBean」Bean 的「item」屬性。
  2. #{itemBean.name} – 注入「itemBean」的「name」屬性到 「customerBean" bean的"itemname」屬性。

4. Spring EL以註解形式

請參閱等效版本註釋模式。

要在注解使用使用SpEL,必須通過註解註冊您的元件。如果註冊bean在XML和Java類中定義@Value,該@Value將無法執行。
package com.yiibai.core;

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;

	//...

}
package com.yiibai.core;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component("itemBean")
public class Item {

	@Value("itemA") //inject String directly
	private String name;

	@Value("10") //inject interger directly
	private int qty;

	public String getName() {
		return name;
	}

	//...
}
啟用自動元件掃描。
<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.yiibai.core" />

</beans>
在注解模式下,可以使用@Value定義Spring EL。在這種情況下,一個String和Integer值直接注入到「itemBean」,之後又注入「itemBean」到「customerBean」屬性。

5. 執行輸出

執行它,無論是使用 SpEL在XML 還是註釋都顯示了同樣的結果:
package com.yiibai.core;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class App {
	public static void main(String[] args) {
	    ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");

	    Customer obj = (Customer) context.getBean("customerBean");
	    System.out.println(obj);
	}
}

輸出結果

Customer [item=Item [name=itemA, qty=10], itemName=itemA]
下載程式碼 – http://pan.baidu.com/s/1kTQ7fyZ