首页 > 代码库 > El中调用静态方法
El中调用静态方法
最近在项目中遇到需要调用静态方法的问题,形如:
<c:forEach items="beans" var="bean"> <p>总数:${com.example.Tools.getTotal(bean.nums)}</p></c:forEach>
不过上面的代码不能通过编译,只能寻求其他办法。经过查阅各种文档,找到了3种解决办法。
1,直接为Bean创建一个get方法
public double getTotal(){ return com.example.Tools.getTotal(nums);}
然后在EL中直接使用:
总数:${bean.total}
2,将Tools#getTotal创建为一个EL function。首先创建一个/WEB-INF/my.tld
文件:
<?xml version="1.0" encoding="UTF-8" ?><taglib xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd" version="2.1"> <display-name>Custom Functions</display-name> <tlib-version>1.0</tlib-version>
<short-name>my</short-name><!--short-name元素可不写 --> <uri>http://example.com/functions</uri> <function> <name>calculateTotal</name> <function-class>com.example.Tools</function-class> <function-signature>double getTotal(double[])</function-signature> </function></taglib>
然后在web.xml中定义uri和tld文件路径的映射:
<jsp-config> <taglib> <taglib-uri>http://example.com/functions</taglib-uri> <taglib-location>/WEB-INF/my.tld</taglib-location> </taglib> </jsp-config>
接着在要使用的jsp头部引入该taglib:
<%@ taglib uri="http://example.com/functions" prefix="my" %>
其中uri对应web.xml中的taglib-uri。最后就可以在EL中使用该函数了:
<c:forEach items="beans" var="bean"> <p>总数:${my:calculateTotal(bean.nums)}</p></c:forEach>
3,使用Spring的SpEL:
jsp头部引入:
<%@taglib prefix="s" uri="http://www.springframework.org/tags" %>
使用:
<c:forEach items="beans" var="bean"> <s:eval expression="T(com.example.Tools).getTotal(bean.nums)" var="total" /> <p>总数:${total}</p></c:forEach>
El中调用静态方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。