我正在开发一个 GWT-Spring-Hibernate 项目,我想在 GWT Service Servlet 中使用 Spring Autowired 注释,但我的自动装配注释服务没有注入。它是空的。有没有我错过的配置细节?
我加
<context:annotation-config />
<context:component-scan base-package="com.org" />
到我的 ApplicationContext.xml 并且我已将我的服务注释为 @Service("myService")
@Autowired
MyService myService; // This is null so WHY?