我正在使用Struts 2.2.3.1
并使用Struts2-spring plugin 2.2.3.1
。依赖注入工作正常,但我使用ApplicationContext
的{{1}}方法正在破坏:
getBean
这就是我过去常常使用WebApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(context);
AdminService service = ac.getBean(AdminService.class);
将依赖项注入我的Struts项目中。Spring 3.0.6
是AdminService
中声明的bean。但是现在,添加了这个插件,它给出了以下错误:
找不到符号符号:方法 的getBean(java.lang.Class中) 位置:界面 org.springframework.web.context.WebApplicationContext
如果我删除此插件,那么它可以工作。是什么原因?