xxl-job

web.xml 1022B

12345678910111213141516171819202122232425262728293031
  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"
  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-spring</display-name>
  7. <context-param>
  8. <param-name>webAppRootKey</param-name>
  9. <param-value>xxl-job-executor-sample-spring</param-value>
  10. </context-param>
  11. <!-- spring -->
  12. <context-param>
  13. <param-name>contextConfigLocation</param-name>
  14. <param-value>classpath*:applicationcontext-*.xml</param-value>
  15. </context-param>
  16. <listener>
  17. <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
  18. </listener>
  19. <listener>
  20. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  21. </listener>
  22. <welcome-file-list>
  23. <welcome-file>index.html</welcome-file>
  24. </welcome-file-list>
  25. </web-app>