我的项目有以下结构: -
parent POM
|-- app-core
|-- app-model
|-- app-services
`-- app-web
app-core:在 Springs
中app-services:泽西休息
* app-services 使用 app-core.jar *
问题:如果我将spring-dependencies添加到app-core,app-services如何访问applicationContext.xml
。我是否还需要向我的app-services模块添加spring-dependencies?
答案 0 :(得分:2)
只需将app-core
作为maven依赖项添加到app-services
的pom中,您就可以applicationContext.xml
访问classpath:applicationContext.xml
。