Spring Boot 应用程序在 web.xml 中启动应用程序初始化 servlet
Posted
技术标签:
【中文标题】Spring Boot 应用程序在 web.xml 中启动应用程序初始化 servlet【英文标题】:Spring Boot application to start application initializing servlets in web.xml 【发布时间】:2019-09-06 00:57:40 【问题描述】:@给定 带有所有 servlet 映射和 contextConfigLocations 的 Web.xml 以加载 spring bean。
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>SpringBootAppWithWebxml</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring/appServlet/spring-context-config.xml
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring/appServlet/servlet-context.xml
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
<async-supported>true</async-supported>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>sampleServlet</servlet-name>
<servlet-class>org.springframework.web.context.support.HttpRequestHandlerServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>sampleServlet</servlet-name>
<url-pattern>/sample/*</url-pattern>
</servlet-mapping>
</web-app>
如何使用 SpringBoot 应用程序加载这个 web.xml 和相应的 servlet 和 contextConfig?
Web.xml 位于模块 A 中,调用应用程序 B 具有模块 A 作为依赖项。
我的springBootapp是
@SpringBootApplication(scanBasePackages = "com.test.package")
@EnableAutoConfiguration(exclude = DataSourceAutoConfiguration.class, HibernateJpaAutoConfiguration.class)
public class StarterApp
public static void main(String[] args)
SpringApplication.run(StarterApp.class);
【问题讨论】:
你没有。当应用程序部署为战争时,web.xml
必须位于特定位置才能被拾取。这根本不适用于使用嵌入式容器运行的 Spring Boot 应用程序。
【参考方案1】:
Spring-boot 通常更喜欢基于注解的配置而不是基于 xml 的配置。默认情况下,Spring web.xml
通常会存在于src/main/webapp/WEB-INF
中,并且会被 spring 自动占用。
更多详情请参考这篇文章:
DispatcherServlet and web.xml in Spring Boot
【讨论】:
以上是关于Spring Boot 应用程序在 web.xml 中启动应用程序初始化 servlet的主要内容,如果未能解决你的问题,请参考以下文章
使用 web.xml 配置 spring-boot 应用程序
如何在 web.xml 中配置 spring-boot servlet?