比如有个工程里边有2个不同的模块,module001和module002
都有相同包路径:org.hello.service
而且都有相同的类:helloService.java
但是他们不相互依赖,但是父类模块是一个(maven)
<modules>
<module>module001</module>
<module>module002</module>
</modules>
那么如果spring注入配置
<context:component-scan base-package="org.hello.service"/>
他是扫描001还是扫描002下的helloService?
或者说,打包成war的时候,会合并这2个文件?
还有为什么2个模块包和名一样,还能建立2个不同文件,虽然物理路径不同,但是打包war以后,路径应该都是org.hello.service.helloService.java吧,不会冲突什么的吗?
偶然的你
富国沪深
慕哥6287543
相关分类