JSTL的错误“attribute test does not accept any expressions”解决方法

今天写jstl语句时,发现无法输入EL表达式,JSTL的错误“attributetest does not accept any expressions”,经过摸索,

发现解决方法有2个

1、将<%@taglibprefix="c" uri="http://java.sun.com/jstl/core"%>

       更改为

        <%@taglibprefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

2、使用JSTL的备用库

       将<%@taglib prefix="c"uri="http://java.sun.com/jstl/core"%>

       更改为

        %@taglib prefix="c"uri="http://java.sun.com/jstl/core_rt"%

你可能感兴趣的:(JSTL的错误“attribute test does not accept any expressions”解决方法)