Spring自动加载包

时间:2017-05-02 17:15:35

标签: java spring spring-mvc

Spring自动从包中加载上下文文件(不添加监听器)。 我无法在web.xml中添加以下侦听器。如果我添加它们,它会显示错误。有弹簧的任何选项,它会自动扫描包并加载XML。

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

<context-param>
    <param-name>contextConfiglocation</param-name>
    <param-value>
        classpath:com/preprogrammer/recruiterbox/config/dao-context.xml
    </param-value>
</context-param>

1 个答案:

答案 0 :(得分:0)

<import resource="classpath:applicationContext.xml" />

您可以在servert.xml文件中导入它。

如果您的XML在classpath中可用,那么spring将会处理它。不需要听众。