我想使用以下代码生成JSF中图像的URL ...
<c:choose>
<c:when test="#{cc.attrs.index == 0}">
<c:set var="image" value="image.png" />
</c:when>
<c:otherwise>
<c:set var="image" value="image1.png" />
</c:otherwise>
</c:choose>
<img src="#{image}" />
但是当我运行它时,我得到一个NumberFormatException:
java.lang.NumberFormatException: For input string: "image.png"
at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1241)
at java.lang.Double.valueOf(Double.java:504)
at com.sun.el.lang.ELArithmetic$DoubleDelegate.coerce(ELArithmetic.java:148)
at com.sun.el.lang.ELArithmetic.coerce(ELArithmetic.java:373)
at com.sun.el.lang.ELArithmetic.add(ELArithmetic.java:254)
at com.sun.el.parser.AstPlus.getValue(AstPlus.java:57)
at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:206)
at org.apache.myfaces.view.facelets.el.ELText$ELTextVariable.toString(ELText.java:208)
at org.apache.myfaces.view.facelets.el.ELText$ELTextComposite.toString(ELText.java:140)
...
所以现在我的问题是:是{true},c:set
不接受字符串值吗?
BTW,当我使用参数时,例如
<c:set var="image" value="#{cc.attrs.index}" />
一切都很好,但是,网址不正确。
我的maven依赖项:
答案 0 :(得分:0)
我会使用纯JSF来解决这个问题
<h:graphicImage value="#{(cc.attrs.index eq 0)? 'image.png' : 'image1.png' }" />