常見問題 —— JSP相關(EL表達式問題)

問題描述:
這裏寫圖片描述
這裏寫圖片描述
報錯信息:

嚴重: Servlet.service() for servlet [aween-item-web] in context with path [] threw exception [javax.servlet.ServletException: javax.servlet.jsp.JspException: In <formatNumber>, value attribute can not be parsed into java.lang.Number: "${item.price}"] with root cause java.lang.NumberFormatException: For input string: "${item.price}"

解決方法:
這個問題經常遇到,問題出在EL表達式被JSP忽略了

<%@ page language=”java” contentType=”text/html; charset=UTF-8” pageEncoding=”UTF-8” isELIgnored=”false” %>

將isELIgbnored設置成false即可,默認爲true

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章