web.xml 711 B

12345678910111213141516
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" id="WebApp_ID" version="4.0">
  3. <display-name>DataFusion</display-name>
  4. <filter>
  5. <filter-name>zskk_filter</filter-name>
  6. <filter-class>com.jfinal.core.JFinalFilter</filter-class>
  7. <init-param>
  8. <param-name>configClass</param-name>
  9. <param-value>com.zskk.config.ZskkConfig</param-value>
  10. </init-param>
  11. </filter>
  12. <filter-mapping>
  13. <filter-name>zskk_filter</filter-name>
  14. <url-pattern>/*</url-pattern>
  15. </filter-mapping>
  16. </web-app>