天天看點

異常流水-javax.el.ELException-類型轉換異常

javax.el.ELException: Cannot convert 1,0 of type class java.lang.String to class java.lang.Long

jsp的EL表達式中,若用String類型的對象與數值做eq等計算時,會先将String對象轉為double類型。是以當String對象含有非數字字元時會出現此異常。

<c:if test="${product.type eq 30}">
//安全寫法
<c:if test="${product.type eq '30'}">
           

繼續閱讀