我正在研究依赖于Module1和Module2的Module3。

Module1具有以下类别:

class Module1Service {
    @Autowired
    MyBean myBean;
    .....
}

@Component("module1MyBean")
class MyBeanImpl implements MyBean{

}


Module2具有以下类别:

class Module2Service {
    @Autowired
    MyBean myBean;
    .....
}

@Component("module2MyBean")
class MyBeanImpl implements MyBean{

}


不幸的是,Module1Service和Module2Service都不包含@Resource或@Qualifier。因此,当我尝试引导Module3时,出现NonUniqueBeanDefinition异常。

有什么方法可以避免在不对Module1或Module2进行任何更改的情况下发生此异常?

最佳答案

您是依赖模块1服务还是模块2服务,如果不依赖,则可以使用context:exclude-filter describe here

关于java - Spring独特的Bean-多个模块,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28780413/

10-10 08:37