我的jsp中有以下代码
<c:forEach var="starCounter" begin="1" end="5" step="1">
<c:if test="${starCounter le averageRating}">
<i class="glyphicon glyphicon-star"></i>
</c:if>
<c:if test="${starCounter gt averageRating}">
<i class="glyphicon glyphicon-star-empty"></i>
</c:if>
</c:forEach>
我想将步长更改为1到0.5,但无法这样做,因为当我将步长更改为0.5时,出现以下错误,我的jsp无法编译
Caused by: java.lang.NumberFormatException: For input string: "0.5"
如this link中所述,似乎步骤必须> =1。
有什么方法可以实现我想要的目标吗?
感谢您的帮助。
starHalfStepCounter
并在其周围播放。