web.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Licensed to Jasig under one or more contributor license agreements.
  3. See the NOTICE file distributed with this work for additional information
  4. regarding copyright ownership. Jasig licenses this file to you under the
  5. Apache License, Version 2.0 (the "License"); you may not use this file except
  6. in compliance with the License. You may obtain a copy of the License at the
  7. following location: http://www.apache.org/licenses/LICENSE-2.0 Unless required
  8. by applicable law or agreed to in writing, software distributed under the
  9. License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
  10. OF ANY KIND, either express or implied. See the License for the specific
  11. language governing permissions and limitations under the License. -->
  12. <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  13. xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
  14. version="2.4">
  15. <display-name>ais</display-name>
  16. <listener>
  17. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  18. </listener>
  19. <context-param>
  20. <param-name>contextConfigLocation</param-name>
  21. <param-value>
  22. /WEB-INF/spring-configuration/applicationContext.xml
  23. </param-value>
  24. </context-param>
  25. <context-param>
  26. <param-name>log4jConfigLocation</param-name>
  27. <param-value>classpath:/log4j.xml</param-value>
  28. </context-param>
  29. <context-param>
  30. <param-name>log4jRefreshInterval</param-name>
  31. <param-value>3000</param-value>
  32. </context-param>
  33. </web-app>