名扬数据:据带参数方法调用JSP EL的表达式

     带参数方法调用JSPEL表达式:一个JSPEL表达式包括变量和操作符。任何存储在某个JSP作用范围(如:pagerequestsessionapplicbean能被作为一个EL变量来使用。

     因此你必需告诉JSP容器它应该被当作一个EL表达式来处理。可以通过使用定界符来做到这一点。一个JSPEL表达式总是以”${}来标记(一个“$符号和一个左花括号,因为一个JSPEL表达式可以出现在静态文本呈现的地方。右花括号)

     最新的实现是JUEL大家可以试用一下。下面代码就是测试如何使用:调用JSPEL表达式支持带参数的方法。

//theExpressionFactoriimplementisde.odysseus.el.

ExpressionFactoryImpl| 

"true";         System.setProperti"javax.el.methodInvocations".

ExpressionFactorifactori=newde.odysseus.el.

ExpressionFactoryImplSystem.getProperti; 

  

//packagde.odysseus.el.utilprovidaready-to-ussubclassofELContext 

de.odysseus.el.util.SimpleContextcontext=newde.

odysseus.el.util.SimpleContext; 

07.  

//setvalufortop-levelproperti"foo"toStringvalu"bar" 

"${foo}",factory.createValueExpresscontext.String.class.

"bar"; setValucontext.

  

//creatanexpression 

ValueExpresse=factory.createValueExpresscontext.

String.class; "${foo.toUpperCas}".

//evaluate 

System.out.printlne.getValucontext;//-->BA R

     EL表达式中所使用的操作符对你来说可能看起来很熟悉。因为它和那些在大多数语言中所支持的操作符一样。操作符描述了对变量所期望的操作。如果你之前曾经使用过任何编程语言的话。

     一个JSPEL表达式可以包含:数字、文本(单引号或者双引号之间)布尔值、null值。