/web/Test/webapp/WEB-INF/web.xml

http://drcp.googlecode.com/ · XML · 20 lines · 15 code · 5 blank · 0 comment · 0 complexity · 2a05fd34f869b0de5f2fe94fc8789c7a MD5 · raw file

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app id="WebApp_9" version="2.4" xmlns="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 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
  3. <display-name>Struts Blank</display-name>
  4. <filter>
  5. <filter-name>struts2</filter-name>
  6. <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
  7. </filter>
  8. <filter-mapping>
  9. <filter-name>struts2</filter-name>
  10. <url-pattern>/*</url-pattern>
  11. </filter-mapping>
  12. <welcome-file-list>
  13. <welcome-file>index.html</welcome-file>
  14. </welcome-file-list>
  15. </web-app>