xxl-job

web.xml 895B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  5. id="WebApp_ID" version="2.5">
  6. <display-name>xxl-job-executor-sample-nutz</display-name>
  7. <filter>
  8. <filter-name>xxl-job-executor-sample-nutz</filter-name>
  9. <filter-class>org.nutz.mvc.NutFilter</filter-class>
  10. <init-param>
  11. <param-name>modules</param-name>
  12. <param-value>com.xuxueli.executor.sample.nutz.MainModule</param-value>
  13. </init-param>
  14. </filter>
  15. <filter-mapping>
  16. <filter-name>xxl-job-executor-sample-nutz</filter-name>
  17. <url-pattern>/*</url-pattern>
  18. </filter-mapping>
  19. <welcome-file-list>
  20. <welcome-file>index</welcome-file>
  21. </welcome-file-list>
  22. </web-app>