Servlet3.0中使用@Resource注解报错 Cannot create resource instance
在SSM框架中,在Servlet中使用@Resource报错
回答:
在Servlet中使用@Resource注解不起作用,然后使用了@AutoWirted注解,并在Servlet中重写init()方法
@Override
public void init() throws ServletException { super.init();
WebApplicationContext wac = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
AutowireCapableBeanFactory factory = wac.getAutowireCapableBeanFactory();
factory.autowireBean(this);
}
这样就可以自动注入了
回答:
把@Resource改成@Resource (name = "registerItemService")
回答:
其他类都没有这个问题吗?留心配置文件,这个是说明service注入到了容器但可能无法创建实例
回答:
servlet 不在spring 的bean中管理,用不了自动注解的,有两种方案,一种是直接获取
WebApplicationContext context = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());target = context.getBean("registerItemService");
另外一种是放静态工具里,application 的启动后自动注入,放一个静态工具里
还有一种直接单例 new 出来好了
以上是 Servlet3.0中使用@Resource注解报错 Cannot create resource instance 的全部内容, 来源链接: utcz.com/p/180984.html