JSTL不同版本和EL運算式的關聯

來源:互聯網
上載者:User

標籤:style   class   blog   code   java   http   

JSTL目前有3個版本:JSTL1.0、JSTL1.1、JSTL1.2

JSTL1.0和JSTL1.1包含jstl.jar和standard.jar這2個jar包,在j2ee4的版本中是需要單獨引用這2個jar包的。

JSTL1.2在J2EE5裡的jar包是jstl-1.2.jar,在J2EE6裡是jstl-imp.jar。

 

各版本差異:

JSTL1.0(不支援EL)、JSTL 1.1和JSTL 1.2支援的servlet和jsp規範也不同:

web.xml中要申明相應的servlet版本:

JSTL1.2需要servlet2.5<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="2.5"  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_5.xsd">
JSTL1.1和JSP2.0需要servlet2.4<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee   http://java.sun.com/xml/ns/j2ee/web-app_2_4 .xsd">
JSTL1.0和JSP1.2需要servlet2.3<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.3 " xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee   http://java.sun.com/xml/ns/j2ee/web-app_2_3 .xsd">

JSP中taglib的引用方式:

JSTL1.0的使用方法為:<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>JSTL1.1的使用方法為:<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>JSTL1.2的使用方法為<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

EL運算式的支援:

預設開啟支援EL運算式支援有:

1、servlet2.4

2、J2EE6

 

預設不支援EL運算式需要進行如下2種配置中的其一來開啟EL:

1、在JSP中加入:

<%@ page isELIgnored="false"%>

2、在web.xm中加入:

<jsp-config>         <jsp-property-group>             <url-pattern>*.jsp</url-pattern>             <el-ignored>false</el-ignored>         </jsp-property-group>     </jsp-config>

 

最終的結論:如果是新專案提案使用J2EE6,因為新項目不可能還使用servlet2.4。

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.