2、JSTL备忘

来源:互联网 发布:如何提高口语 知乎 编辑:程序博客网 时间:2024/06/14 08:58

备忘

1、WebContent\webpage\modules\sys\sysLogin.jsp中  <title>${fns:getConfig('productName')} 登录</title>

——》:<%@ include file="/webpage/include/taglib.jsp"%>

2、WebContent\webpage\include\taglib.jsp中

——》:<%@ taglib prefix="fns" uri="/WEB-INF/tlds/fns.tld" %>

3、\WEB-INF\tlds\fns.tld中

——》:  <function>
    <description>获取配置</description>
    <name>getConfig</name>
    <function-class>com.jeeplus.common.config.Global</function-class>
    <function-signature>java.lang.String getConfig(java.lang.String)</function-signature>
    <example>${fns:getConfig(key)}</example>
  </function>