Spring EL演算子の例
Spring ELは、標準的な数学、論理、または関係演算子のほとんどをサポートしています。例えば、
-
関係演算子
– 等しい(==、eq)、等しくない(!=、ne)、より小さい
(<、lt)、以下(>、le)、より大きい(>、gt)、以上(> =、ge)のいずれかです。
-
論理演算子
– 、およびor、およびnot(!). -
数学演算子
– 加算()、減算( – )、
乗算(** )、除算(/)、モジュラス(%)および指数関数(^)です。
AnnotationのSpring EL
この例は、SpELで演算子を使用する方法を示しています。
package com.mkyong.core;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component("customerBean")
public class Customer {
//Relational operators
@Value("#{1 == 1}")//true
private boolean testEqual;
@Value("#{1 != 1}")//false
private boolean testNotEqual;
@Value("#{1 < 1}")//false
private boolean testLessThan;
@Value("#{1 <= 1}")//true
private boolean testLessThanOrEqual;
@Value("#{1 > 1}")//false
private boolean testGreaterThan;
@Value("#{1 >= 1}")//true
private boolean testGreaterThanOrEqual;
//Logical operators , numberBean.no == 999
@Value("#{numberBean.no == 999 and numberBean.no < 900}")//false
private boolean testAnd;
@Value("#{numberBean.no == 999 or numberBean.no < 900}")//true
private boolean testOr;
@Value("#{!(numberBean.no == 999)}")//false
private boolean testNot;
//Mathematical operators
@Value("#{1 + 1}")//2.0
private double testAdd;
@Value("#{'1' + '@' + '1'}")//1@1
private String testAddString;
@Value("#{1 - 1}")//0.0
private double testSubtraction;
@Value("#{1 ** 1}")//1.0
private double testMultiplication;
@Value("#{10/2}")//5.0
private double testDivision;
@Value("#{10 % 10}")//0.0
private double testModulus ;
@Value("#{2 ^ 2}")//4.0
private double testExponentialPower;
@Override
public String toString() {
return "Customer[testEqual=" + testEqual + ", testNotEqual="
+ testNotEqual + ", testLessThan=" + testLessThan
+ ", testLessThanOrEqual=" + testLessThanOrEqual
+ ", testGreaterThan=" + testGreaterThan
+ ", testGreaterThanOrEqual=" + testGreaterThanOrEqual
+ ", testAnd=" + testAnd + ", testOr=" + testOr + ", testNot="
+ testNot + ", testAdd=" + testAdd + ", testAddString="
+ testAddString + ", testSubtraction=" + testSubtraction
+ ", testMultiplication=" + testMultiplication
+ ", testDivision=" + testDivision + ", testModulus="
+ testModulus + ", testExponentialPower="
+ testExponentialPower + "]";
}
}
package com.mkyong.core;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component("numberBean")
public class Number {
@Value("999")
private int no;
public int getNo() {
return no;
}
public void setNo(int no) {
this.no = no;
}
}
それを実行します
Customer obj = (Customer) context.getBean("customerBean");
System.out.println(obj);
出力
Customer[ testEqual=true,
testNotEqual=false,
testLessThan=false,
testLessThanOrEqual=true,
testGreaterThan=false,
testGreaterThanOrEqual=true,
testAnd=false,
testOr=true,
testNot=false,
testAdd=2.0,
testAddString=1@1,
testSubtraction=0.0,
testMultiplication=1.0,
testDivision=5.0,
testModulus=0.0,
testExponentialPower=4.0]....
=== XMLのSpring EL
Bean定義XMLファイルの同等のバージョンを参照してください。 XMLでは、次のようなシンボル
"** less than ** "は常にサポートされていません。代わりに、テキスト形式の
例えば、( '** <** ' = '** lt ** ')と( '** <= ** ' =
'** le ** ')。
<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.mkyong.core.Customer”> <property name = “testEqual” value = “#{1 == 1}”/> <property name = “testNotEqual” value = “#プロパティ名= “testLessThanOrEqual” value = “#{1 le 1}”/> <property name = “testLessThan” value = “#1 1 1” = “testGreaterThan” value = “#{1>}”/> <プロパティ名= “testGreaterThanOrEqual” value = “#{1> = 1}”/> <プロパティ名= “testAnd” value = “#{numberBean。 “プロパティ名=” testOr “value =”#{numberBean.no == 999またはnumberBean.no <900} “/> <property name =” testNot “value <property name = “testAddString” value = “#{‘1 =”#{!(numberBean.no == 999)} ” ” @ ” 1 ‘} “/> <property name =” testSubtraction “value =”#{1
1} “/> <プロパティ名=” testMultiplication “value =”#{1
1} “/> <property name = “testDivision” value = “#{10/2}”/> <property <bean name = “testModulus” value = “#{10%10}”/> <property name = “testExponentialPower” value = “#{2 ^ 2}”/> <bean id = “numberBean” class = ” com.mkyong.core.Number “> <property name =” no “value =” 999 “/> </bean>
</beans>
===ソースコードをダウンロードする それをダウンロードする - link://wp-content/uploads/2011/06/Spring3-EL-Operator-Example.zip[Spring3-EL-Operator-Example.zip](7 KB) ===リファレンス 。 http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/expressions.html#d0e11931[Official Spring EL演算子リファレンス] link://tag/spring-el/[spring el]link://tag/spring3/[spring3]