EL任何功能,得到一个数字的绝对值?(EL any function to get absolute

2019-07-04 16:40发布

我知道丑陋的方式

a>0 ? a : -a

但是这是非常annoyng当是一个相对漫长的表达。

OBJ1["x"]-someVar>0 ? OBJ1["x"]-someVar : -(OBJ1["x"]-someVar)

有没有做这件事的任何更好的方式?

Answer 1:

对于纯JSP,您可以创建自定义EL函数委托给Math#abs(int)

如果第一只创建一个/WEB-INF/functions.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">

    <tlib-version>1.0</tlib-version>
    <short-name>Custom_Functions</short-name>
    <uri>http://example.com/functions</uri>

    <function>
        <name>abs</name>
        <function-class>java.lang.Math</function-class>
        <function-signature>int abs(int)</function-signature>
    </function>
</taglib>

然后,你就可以按如下方式使用它:

<%@taglib uri="http://example.com/functions" prefix="f" %>
...
${f:abs(OBJ1["x"]-someVar)}

该解决方案还适用于JSF,但是如果你使用JSF, OmniFaces通过提供其简化为你好importFunctions (如果尚未使用OmniFaces与JSF,你应该开始使用它)

<o:importFunctions type="java.lang.Math" var="m" />
...
#{m:abs(-10)}

也可以看看:

  • 我们的EL wiki页面


文章来源: EL any function to get absolute value of a number?
标签: jsp jsf jstl el