我有以下代码,我在this answer上建模:
public class DeployerServlet extends HttpServlet {
@Resource
Engine engine;
public void init(ServletConfig config) throws ServletException {
super.init(config);
SpringBeanAutowiringSupport.processInjectionBasedOnServletContext(this, config.getServletContext());
}
// ...
}
但是servlet甚至没有正确实例化。在创建实例时,Tomcat尝试在JNDI中查找名称com.example.DeployerServlet/engine
,这会导致异常,
SEVERE: Allocate exception for servlet Deploy Servlet
javax.naming.NameNotFoundException: Name com.example.DeployerServlet is not bound in this Context
那么,将Spring bean注入servlet的推荐方法是什么?
答案 0 :(得分:1)
@Resource
注释是JavaEE element。它用于声明对资源的引用。虽然Spring可以像使用@Inject
和@Autowired
一样使用它,但在这种情况下,servlet Container首先起作用。只需将@Resource
替换为@Autowired
。
答案 1 :(得分:0)
似乎你的构建没有正确完成。清理您的项目并重建。您的问题将解决