今天在使用jstl数字格式化的时候出现了这样一个错误:
JSTL1.2 According to TLD or attribute directive in tag file, attribute var does not accept any expressions
在stackoverflow上发现了不用替换版本的解决方案:
只需要将页面中的
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
改为
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
就可以了。