jsp页面中不能正常解悉EL的解决

jsp页面中不能正常解悉EL的解决
1.查看web.xml的头部信息2.4
    <?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4"
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee   http://java.sun.com/xml/ns/javaee/web-app_2_4.xsd">
2.添加page属性
    <%@ page isELIgnored="false" %>
3.j2ee5.0中已经有了jstl-1.2.jar
    所以不用再导入其它jstl.jar

你可能感兴趣的:(jsp页面中不能正常解悉EL的解决)