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

EL函數的使用

編輯:關於JAVA

[平台]:Tomcat6

Step1:

編寫所需要的類,將編譯生成的el.ELFunction復制到WEB-INF/中。

package el;

public class ELFunction{
public static String toUpper(String str){
return str.toUpperCase();
}
}

注意,用於EL中的函數需定義為static,不然會出錯。

Step2:

在WEB-INF/tlds中添加el.tld,內容如下 :

<?xml version = '1.0' encoding = 'GBK'?>
<taglib xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0" xmlns="http://java.sun.com/xml/ns/j2ee">
<tlib-version>1.0</tlib-version>
<short-name>fc</short-name>
<uri>http://wintys/el</uri>
<function>
<name>toUpper</name>
<function-class>el.ELFunction</function-class>
<function-signature>
java.lang.String toUpper(java.lang.String)
</function-signature>
</function>
</taglib>

Step3:

在WEB-INF/web.xml中添加:

<taglib>
<taglib-uri>http://wintys/el</taglib-uri>
<taglib-location>/WEB-INF/tlds/el.tld</taglib-location>
</taglib>

Step4:

編寫測試頁面ELFunction.jsp:

<%@page contentType="text/html;charset=GBK" %>
<%@taglib uri="http://wintys/el" prefix="myfun" %>
EL Function:<br />
${myfun:toUpper("abcde")}

重啟Tomcat後運行ELFunction.jsp即可得到結果。

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