怎么在Spring中使用Expression接口對表達式進行求值?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
在武侯等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站制作、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè) 網(wǎng)站設(shè)計制作按需制作,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),營銷型網(wǎng)站,成都外貿(mào)網(wǎng)站建設(shè)公司,武侯網(wǎng)站建設(shè)費用合理。
一 Bean
package org.crazyit.app.domain; import java.util.Date; public class Person { private Integer id; private String name; private Date birth; // 無參數(shù)的構(gòu)造器 public Person() { } // 初始化全部成員變量的構(gòu)造器 public Person(Integer id , String name , Date birth) { this.id = id; this.name = name; this.birth = birth; } // id的setter和getter方法 public void setId(Integer id) { this.id = id; } public Integer getId() { return this.id; } // name的setter和getter方法 public void setName(String name) { this.name = name; } public String getName() { return this.name; } // birth的setter和getter方法 public void setBirth(Date birth) { this.birth = birth; } public Date getBirth() { return this.birth; } }
二 測試類
package lee; import org.springframework.expression.*; import org.springframework.expression.spel.standard.*; import org.springframework.expression.spel.support.*; import java.util.*; import org.crazyit.app.domain.*; public class SpELTest { public static void main(String[] args) { // 創(chuàng)建一個ExpressionParser對象,用于解析表達式 ExpressionParser parser = new SpelExpressionParser(); // 最簡單的字符串表達式 Expression exp = parser.parseExpression("'HelloWorld'"); System.out.println("'HelloWorld'的結(jié)果: " + exp.getValue()); // 調(diào)用方法的表達式 exp = parser.parseExpression("'HelloWorld'.concat('!')"); System.out.println("'HelloWorld'.concat('!')的結(jié)果: " + exp.getValue()); // 調(diào)用對象的getter方法 exp = parser.parseExpression("'HelloWorld'.bytes"); System.out.println("'HelloWorld'.bytes的結(jié)果: " + exp.getValue()); // 訪問對象的屬性(d相當(dāng)于HelloWorld.getBytes().length) exp = parser.parseExpression("'HelloWorld'.bytes.length"); System.out.println("'HelloWorld'.bytes.length的結(jié)果:" + exp.getValue()); // 使用構(gòu)造器來創(chuàng)建對象 exp = parser.parseExpression("new String('helloworld')" + ".toUpperCase()"); System.out.println("new String('helloworld')" + ".toUpperCase()的結(jié)果是: " + exp.getValue(String.class)); Person person = new Person(1 , "孫悟空", new Date()); exp = parser.parseExpression("name"); // 以指定對象作為root來計算表達式的值 // 相當(dāng)于調(diào)用person.name表達式的值 System.out.println("以persn為root,name表達式的值是: " + exp.getValue(person , String.class)); exp = parser.parseExpression("name=='孫悟空'"); StandardEvaluationContext ctx = new StandardEvaluationContext(); // 將person設(shè)為Context的root對象 ctx.setRootObject(person); // 以指定Context來計算表達式的值 System.out.println(exp.getValue(ctx , Boolean.class)); Listlist = new ArrayList (); list.add(true); EvaluationContext ctx2 = new StandardEvaluationContext(); // 將list設(shè)置成EvaluationContext的一個變量 ctx2.setVariable("list" , list); // 修改list變量的第一個元素的值 parser.parseExpression("#list[0]").setValue(ctx2 , "false"); // list集合的第一個元素被改變 System.out.println("list集合的第一個元素為:" + parser.parseExpression("#list[0]").getValue(ctx2)); } }
三 測試結(jié)果
'HelloWorld'的結(jié)果: HelloWorld
'HelloWorld'.concat('!')的結(jié)果: HelloWorld!
'HelloWorld'.bytes的結(jié)果: [B@14899482
'HelloWorld'.bytes.length的結(jié)果:10
new String('helloworld').toUpperCase()的結(jié)果是: HELLOWORLD
以persn為root,name表達式的值是: 孫悟空
true
list集合的第一個元素為:false
看完上述內(nèi)容,你們掌握怎么在Spring中使用Expression接口對表達式進行求值的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!