常见问题 —— JSP相关(EL表达式问题)

问题描述:
常见问题 —— JSP相关(EL表达式问题)_第1张图片
这里写图片描述
报错信息:

严重: 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

你可能感兴趣的:(遇到的问题)