spring-data-mongo
我的存储库包没有被<mongo:repositories/>
标签扫描的地方有一些奇怪的行为。我正在使用 spring 3.2.3.RELEASE 和 spring-data-mongo 1.2.1.RELEASE。
我有一个名为的项目,其中edowmis
有一个 webapp。我单独使用它,因此可以忽略其他模块。我有一个数据层的应用程序上下文
2 maven modules
datalayer
web
datalayer
所以我想通过编写一个小的单元/集成测试来测试我的设置,但我注意到我无法自动装配我的UserRepository
,因为它说没有这样的 bean
因为我使用的是 IntelliJ,所以当事情正常和不正常时,我可以看到某些视觉效果。我已将 addec 添加<context:component-scan/>
到我的应用程序上下文中,但没有结果。
但是当我添加@Component
注释时,它已经开始识别类。
您可能需要的所有信息都在paste.org上
我的配置是否真的有必要@component
或@Repository
有什么问题?