jsp el使用

环境:tomcat5.5

web.xml

<web-app xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
    http://java.sun.com/xml/ns/javaee/web-app_2_4.xsd" version="2.4">

2.4版本默认支持el表达式,如果使用2.5版本,默认el表达式是关闭的

那么jsp页面里应该增加<%@ page isELIgnored="false"%>

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