Spring EL正規表示式範例


Spring EL支援正規表示式,可使用一個簡單的關鍵詞「matches」。如下範例,
@Value("#{'100' matches '\\d+' }")
private boolean isDigit;
它測試'100'是否是通過正規表示式‘\\d+‘測試過的一個有效的數位。

Spring EL以註解的形式

請參閱下面的 Spring EL 正規表示式的例子,這裡有部分摻入三元運算子,這使得 Spring EL 非常靈活,功能強大。
下面的例子應該是不言自明的。
package com.yiibai.core;

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

@Component("customerBean")
public class Customer {

	// email regular expression
	String emailRegEx = "^[_A-Za-z0-9-]+(\\.[_A-Za-z0-9-]+)" +
			"*@[A-Za-z0-9]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$";

	// if this is a digit?
	@Value("#{'100' matches '\\d+' }")
	private boolean validDigit;

	// if this is a digit + ternary operator
	@Value("#{ ('100' matches '\\d+') == true ? " +
			"'yes this is digit' : 'No this is not a digit'  }")
	private String msg;

	// if this emailBean.emailAddress contains a valid email address?
	@Value("#{emailBean.emailAddress matches customerBean.emailRegEx}")
	private boolean validEmail;

	//getter and setter methods, and constructor	
}
package com.yiibai.core;

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

@Component("emailBean")
public class Email {

	@Value("[email protected]")
	String emailAddress;

	//...
}

輸出

Customer [isDigit=true, msg=yes this is digit, isValidEmail=true]

Spring EL以XML的形式

請參閱在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="customerBean" class="com.yiibai.core.Customer">
	  <property name="validDigit" value="#{'100' matches '\d+' }" />
	  <property name="msg"
		value="#{ ('100' matches '\d+') == true ? 'yes this is digit' : 'No this is not a digit'  }" />
	  <property name="validEmail"
		value="#{emailBean.emailAddress matches '^[_A-Za-z0-9-]+(\.[_A-Za-z0-9-]+)*@[A-Za-z0-9]+(\.[A-Za-z0-9]+)*(\.[A-Za-z]{2,})$' }" />
	</bean>

	<bean id="emailBean" class="com.yiibai.core.Email">
	  <property name="emailAddress" value="[email protected]" />
	</bean>

</beans>
下載程式碼 – http://pan.baidu.com/s/1jHklXt0

參考

  1. Spring EL三元運算子(if-then-else)範例