3

私は醜い方法を知っています

a>0 ? a : -a

しかし、 a が比較的長い式の場合、これは非常に厄介です。

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

それを行うより良い方法はありますか?

4

1 に答える 1

3

プレーンな 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を提供することでこれを簡素化しています(JSF で OmniFaces をまだ使用していない場合は、使用を開始する必要があります)。

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

以下も参照してください。

于 2012-12-13T16:15:14.110 に答える