web.xml 818 B

1234567891011121314151617181920212223
  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 http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
  5. version="3.1">
  6. <filter>
  7. <filter-name>jfinal</filter-name>
  8. <filter-class>com.jfinal.core.JFinalFilter</filter-class>
  9. <init-param>
  10. <param-name>configClass</param-name>
  11. <param-value>base.InitJfinal</param-value>
  12. </init-param>
  13. </filter>
  14. <filter-mapping>
  15. <filter-name>jfinal</filter-name>
  16. <url-pattern>/*</url-pattern>
  17. </filter-mapping>
  18. <welcome-file-list>
  19. <welcome-file>qtiflytek/index.html</welcome-file>
  20. </welcome-file-list>
  21. </web-app>