웹.xml 파일 헤더

28476 단어 스프링 프레임
1. Servlet 3.1
자바 EE 7 XML schema,네 임 스페이스 는? http://xmlns.jcp.org/xml/ns/javaee/
  1. xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  3. xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation= "http://xmlns.jcp.org/xml/ns/javaee
  5. http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
  6. version= "3.1">
  7. web-app>

2. Servlet 3.0

Java EE 6 XML schema,  http://java.sun.com/xml/ns/javaee

  1. xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns="http://java.sun.com/xml/ns/javaee"
  3. xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation= "http://java.sun.com/xml/ns/javaee
  5. http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
  6. version= "3.0">
  7. web-app>

3. Servlet 2.5

Java EE 5 XML schema,  http://java.sun.com/xml/ns/javaee

  1. xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns="http://java.sun.com/xml/ns/javaee"
  3. xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation= "http://java.sun.com/xml/ns/javaee
  5. http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  6. version= "2.5">
  7. web-app>


4. Servlet 2.4

Java EE 1.4 XML schema,  http://java.sun.com/xml/ns/j2ee

  1. xml version="1.0" encoding="UTF-8"?>
  2. <web-app 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. version= "2.4">
  7. web-app>

5. Servlet 2.3

Java EE 1.3 DTDs schema, web.xml ,

  1. /span>
  2. "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
  3. "http://java.sun.com/dtd/web-app_2_3.dtd" >
  4. <web-app>
  5. <display-name>Servlet 2.3 Web Application display-name>
  6. web-app>



(c) :

, http://www.mkyong.com/web-development/the-web-xml-deployment-descriptor-examples/

, , !


좋은 웹페이지 즐겨찾기