程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> JSP EL表達式支持方法調用

JSP EL表達式支持方法調用

編輯:關於JSP

在JEE6中,JSP中的EL表達式支持帶參數的方法調用了。可以像這樣調用:

${foo.bar(baz)} 。

最新的實現是JUEL,大家可以下載試用一下。下面代碼就是測試如何使用:

// the ExpressionFactory implementation is  de.odysseus.el.ExpressionFactoryImpl|
System.setProperty("javax.el.methodInvocations", "true");
ExpressionFactory factory = new de.odysseus.el.ExpressionFactoryImpl (System.getProperties());

// package de.odysseus.el.util provides a ready-to-use subclass of ELContext
de.odysseus.el.util.SimpleContext context = new de.odysseus.el.util.SimpleContext ();
07.
// set value for top-level property "foo" to String value "bar"
factory.createValueExpression(context, "${foo}", String.class).setValue(context,  "bar");

// create an expression
ValueExpression e = factory.createValueExpression(context, "${foo.toUpperCase()}",  String.class);
// evaluate
System.out.println(e.getValue(context)); // --> BAR

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved