我有一个中央库,其中包含模型包
central-lib.jar
-->central.com.dbservice
--StudentDBImpl.java
-->central.com.model
--
--
我也有项目特定的common-jar
my-project-common-lib
-->project.com.model
--
--
-->project.com.dbservice
--StudentDBImpl.java
DemoSpringProject包括jar central-lib.jar和my-project-common-lib
DemoSpringProject
-- build.gradle
-- dependencies {
-->central-lib.jar {
?? how to exclude "central.com.dbservice" package ??
}
-->my-project-common-lib
}
当我启动服务器时,我得到BeanConflictException ...
这里我想从central-lib.jar中排除包(central.com.dbservice)..
如何排除.. ???