gpt4 book ai didi

spring-mvc - web.xml 中的 Spring servlet 缺少 contextConfigLocation 参数值

转载 作者:行者123 更新时间:2023-12-03 17:29:50 25 4
gpt4 key购买 nike

我有一个 web.xml 文件,其中包含一个定义 的 servlet(除其他外)。初始化参数 指定 上下文配置位置 ,但 参数值 空白 ?

开发商为什么要这么做。我一生都无法在 Spring 3.X 的文档中找到任何告诉我这有什么影响的东西。

<servlet>
<servlet-name>restservices</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value></param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

最佳答案

默认情况下 DispatcherServlet将加载一个名为 的 xml 文件[servlet 名称]-servlet.xml .

这是没有 init-param 的时候命名为 contextConfigLocation被定义为。

但是,在您的情况下,有一个 init-param命名为 contextConfigLocation已定义,它告诉 DispatcherServlet什么都不加载,只委托(delegate)给父上下文(由 ContextLoaderListener 加载的那个)。

所以简而言之,没有init-param之间是有区别的。已定义或为空 init-param .

另见 https://jira.springsource.org/browse/SPR-4746 .

关于spring-mvc - web.xml 中的 Spring servlet 缺少 contextConfigLocation 参数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21516989/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com