在Spring Servlet项目的web.xml中的contextConfigLocation内订购或加载

时间:2017-05-30 10:19:52

标签: java spring web.xml

在spring-servlet Web应用程序中,如果contextConfigLocation下有多个上下文xmls,是否可以保证这些上下文文件的加载顺序与它们的指定顺序相同?

示例web.xml:

<context-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>
        a.xml
        b.xml
        c.xml
      </param-value>
</context-param>

<listener>
      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

在上面的示例web.xml中,如果没有其他依赖项(通过注入或&#34;依赖&# 34;)指定?

0 个答案:

没有答案