JSTL取后台属性,JSP页面比较大小时导致500 Internal Server Error(神坑)
程序员文章站
2022-05-04 19:24:33
...
今天测试报了一个,url参数带小数,jsp显示空白的问题,F12我看浏览器报的是:500 Internal Server Error,跟了很久,发现后台返回是没有问题的,打印台也没有报错,一步步删减相关代码排查,终于发现是jstl比较的时候出现问题,泪奔,有问题好歹打印个错误给我吧,心累。
下面贴出错误代码,出现问题的地方就是:${startPrice>=0} 当startPrice是小数时,如6.6,直接500 Internal Server Error
<c:if test="${fn:length(startPrice)>0||fn:length(endPrice)>0}">
<a href="javaScript:void(0)" onclick="redirect_product('0')" title="">
起始价:
<c:choose>
<c:when test="${startPrice>=0 && (endPrice ==null || endPrice =='')}">
${startPrice}元以上
</c:when>
<c:otherwise>
${startPrice} - ${endPrice} 元
</c:otherwise>
</c:choose>
<i class="iconfont icon-close"></i>
</a>
</c:if>