我正在使用play spring-1.0.1
module并根据文档:
To enable component scanning, add this line to the
/conf/application.conf文件:
play.spring.component-scan=true Note that enabling this scans for @org.springframework.stereotype.Component,
@ org.springframework.stereotype.Repository, @ org.springframework.stereotype.Service 识别Spring bean。 此外,运行该组件 scan支持注释 基于配置(即, @ org.springframework.beans.factory.annotation.Autowired, 等等)。
当我尝试同样的事情时,它没有说NullPointerException
,因为它无法将bean连接到相应的类。
虽然
play.modules.spring.Spring.getBeanOfType(UserManager.class);
在我的模特上工作正常。
这是一个已知问题还是我做错了
谢谢