81.5 部署WAR到老的(Servlet2.5)容器

Spring Boot使用 Servlet 3.0 APIs初始化ServletContext(注册Servlets等),所以你不能在一个Servlet 2.5的容器中原封不动的使用同样的应用。使用一些特定的工具也是可以在老的容器中运行Spring Boot应用的。如果添加了org.springframework.boot:spring-boot-legacy依赖,你只需要创建一个web.xml,声明一个用于创建应用上下文的上下文监听器,过滤器和servlets。上下文监听器是专用于Spring Boot的,其他的都是一个Servlet 2.5的Spring应用所具有的。示例:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  5. <context-param>
  6. <param-name>contextConfigLocation</param-name>
  7. <param-value>demo.Application</param-value>
  8. </context-param>
  9. <listener>
  10. <listener-class>org.springframework.boot.legacy.context.web.SpringBootContextLoaderListener</listener-class>
  11. </listener>
  12. <filter>
  13. <filter-name>metricFilter</filter-name>
  14. <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
  15. </filter>
  16. <filter-mapping>
  17. <filter-name>metricFilter</filter-name>
  18. <url-pattern>/*</url-pattern>
  19. </filter-mapping>
  20. <servlet>
  21. <servlet-name>appServlet</servlet-name>
  22. <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  23. <init-param>
  24. <param-name>contextAttribute</param-name>
  25. <param-value>org.springframework.web.context.WebApplicationContext.ROOT</param-value>
  26. </init-param>
  27. <load-on-startup>1</load-on-startup>
  28. </servlet>
  29. <servlet-mapping>
  30. <servlet-name>appServlet</servlet-name>
  31. <url-pattern>/</url-pattern>
  32. </servlet-mapping>
  33. </web-app>

在该示例中,我们使用一个单一的应用上下文(通过上下文监听器创建的),然后使用一个init参数将它附加到DispatcherServlet。这在一个Spring Boot应用中是很正常的(你通常只有一个应用上下文)。