jstl标签库不起作用

开始的时候是JDK1.6+JSTL1.2,一切都很正常,所以后来换项目用JDK1.5+JSTL1.0这样的组合,换成JSTL1.0后,问题就来了,JSP页面的EL标签直接成字符串便出了,解决办法:
1. 修改WEB.XML 版本号为2.4
  http://java.sun.com/xml/ns/j2ee ” xmlns:xsi= “http://www.w3.org/2001/XMLSchema-instance ” xsi:schemaLocation= “http://java.sun.com/xml/ns/j2ee web-app_2_4.xsd ” version= “2.4 “>
2. 在表头设置参数isELIgnored=”false”
  <%@ page contentType=”text/html; charset=gb2312” language=”java” isELIgnored=”false” %>

<%@ page isELIgnored=”true|false”%>
  如果设定为真,那么JSP中的表达式被当成字符串处理。 
比如下面这个表达式:
  

${2000 % 20}


  在isELIgnored=”true”时输出为${2000 % 20},而isELIgnored=”false”时输出为100。Web容器默认isELIgnored=”false”。

你可能感兴趣的:(jsp,jstl)