在春天解决BeanConflict的最佳方法

时间:2017-03-09 12:57:31

标签: spring rest

我有一个中央库,其中包含模型包

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)..

如何排除.. ???

0 个答案:

没有答案