JSTL 版本选择 2.4&2.3

1.  Servelt / JSP/JSTL / Java/Tomcat Version

 

Servlet    JSP      JSTL    Java   Tomcat
2.5    2.1    1.2     5.0     6.0.x
2.4    2.0    1.1     1.4     5.5.x
2.3    1.2    1.0     1.2     4.1.x

 

 

2.  Servlet/JSTL

 

    2.1  Servlet(2.4)   ------->  JSTL 1.1

    在web.xml中使用*2.4.xsd, jsp中url使用*/jsp/jstl/*.

 

Html代码   收藏代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"  
  3.  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4.  xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee   
  5.  http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">    
  6.  ...     
  7. </web-app>  

 

Html代码   收藏代码
  1. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>  
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>  
  3. <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>  
  4. <%@ taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x" %>  
  5. <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>  

 

 

   2.2  Servlet(2.3)  ------->  JSTL 1.0

 

Html代码   收藏代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <!DOCTYPE web-app  
  3.     PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"  
  4.     "http://java.sun.com/dtd/web-app_2_3.dtd">  
  5. <web-app>  
  6.   ...  
  7. </web-app>  

 

Html代码   收藏代码
  1. <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>  
  2. <%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>  
  3. <%@ taglib uri="http://java.sun.com/jstl/xml" prefix="x" %>  
  4. <%@ taglib uri="http://java.sun.com/jstl/sql" prefix="sql" %>  

你可能感兴趣的:(java,sql,Web,jsp,sun)