jsp el 自定义方法 tld 说明

Posted 爷的眼睛闪亮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp el 自定义方法 tld 说明相关的知识,希望对你有一定的参考价值。

使用 el 的过程中,需要使用到后端代码处理逻辑,这个时候我们就需要自定义 方法。

如我们后端代码定义如下:

package com.rhythmk.common;

public class FncHelper {

    
    public static String getBlog()
    {
        return "Rhythmk.cnblogs.com";
    }
    
    public static  Integer getResult(Integer x,Integer y) {
         return x+y;
    }
}

 

在/WebContent/WEB-INF 目录下 我们新建 tlds 用于存放自定义方法

  如新建 文件  fuc 于路径 /WebContent/WEB-INF/fnc.tld 代码如下:

<?xml version="1.0" encoding="UTF-8" ?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
  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">
  <description>JSTL 1.1 functions library</description>
  <display-name>JSTL functions sys</display-name>
  <tlib-version>1.1</tlib-version>
  <short-name>fnc</short-name>
<!--   <uri>http://java.sun.com/jsp/jstl/functionss</uri> -->
  <function>
    <description>获取博客地址</description>
    <name>getBlog</name>
    <function-class>com.rhythmk.common.FncHelper</function-class>
    <function-signature>java.lang.String getBlog()</function-signature>
    <example>${fnc:getBlog()}</example>
  </function>
  
    <function>
    <description>求和</description>
    <name>getResult</name>
    <function-class>com.rhythmk.common.FncHelper</function-class>
    <function-signature>java.lang.Integer getResult(java.lang.Integer,java.lang.Integer)</function-signature>
    <example>${fnc:getResult(x,y)}</example>
  </function>
  
  </taglib>

 

在JSP 页面中使用则先引入:

   <%@ taglib prefix="fnc" uri="/WEB-INF/tlds/fnc.tld" %>

调用如下:

无参数方法
${fnc:getBlog()}
<br/>
求和
${fnc:getResult(100,200)}

 

注意:

       后端JAVA代码 一定为 静态方法

以上是关于jsp el 自定义方法 tld 说明的主要内容,如果未能解决你的问题,请参考以下文章

[JSP]自定义EL函数以及使用

JSP自定义tld方法标签

自定义el函数

自定义jsp标签

jsp2自定义标签开篇

JSP自定义标签的使用简化版