public void init(ServletConfig servletConfig) throws ServletException {
super.init(servletConfig);
WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
userService = (UserService) ctx.getBean("userService");
}
使用了依赖查找来获得对象,并且在servlet代码中硬编码了应用对象的bean名字。
Servlet中注入Spring的bean
最新推荐文章于 2024-06-06 21:43:22 发布