servlet注入service业务bean

项目中用到spring容器来管理业务bean,在servlet中就收到前台传递来的请求参数后,调用业务bean,老是出错

部门代码如下

[java] view plaincopy

  1. <span style="font-size:18px;">private UserService userService;
  2. public UserService getUserService() {
  3. return userService;
  4. }
  5. @Resource
  6. public void setUserService(UserService userService) {
  7. this.userService = userService;
  8. }</span>

运用@Resource注解注入,老是报错说什么

Name XXX is not bound in this Context

让人郁闷死,排错了好久,而在action中一切都很正常,有谁知道为什么了给我说下,

这里我找了一种解决问题的方法给大家分享:

[java] view plaincopy

  1. private UserService userService;
  2. @Override
  3. public void init(ServletConfig servletConfig) throws ServletException {
  4. super.init(servletConfig);
  5. WebApplicationContext webApplicationContext = WebApplicationContextUtils.getWebApplicationContext(servletConfig.getServletContext());
  6. userService=(UserService) webApplicationContext.getBean("userServiceImpl");
  7. }
时间: 2024-11-08 01:29:16

servlet注入service业务bean的相关文章

Spring容器启动后注入service到Servlet并自动执行

通常做法是定义一个Servlet,并在web.xml中配置Servlet的启动顺序<load-on-startup>的值在DispatcherServlet之后.但这样做的缺点是在Servlet中无法使用Spring的依赖注入功能,只能使用WebApplicationContext的getBean()方法获取bean. 找到的解决办法如下: 1.自定义一个用于代理启动Servlet的类DelegatingServletProxy: package cn.edu.swu.oa.common.ut

如何在Java Filter 中注入 Service

在项目中遇到一个问题,在 Filter中注入 Serivce失败,注入的service始终为null.如下所示: public class WeiXinFilter implements Filter{ @Autowired private UsersService usersService; public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOExc

Myeclipse插件快速生成ssh项目并配置注解 在action层注入service的超详细过程

最近发现,我对于ssh的 自动注入配置 还是不熟悉,于是整理了一下 终于做了一个 简单的 注入配置出来. 以前都是在applicationContext.xml 里面这样配 <bean id="loginAction" class="com.dj.ssh.action.LoginAction" scope="prototype" autowire="byName"> <property name="

静态工具类中使用注解注入service(静态方法调用有注解的非静态方法)

原文转载:http://blog.csdn.net/p793049488/article/details/37819121 解决方案如下: /** * */ package cn.common.util; import javax.annotation.PostConstruct; import javax.servlet.http.HttpServletRequest; import org.springframework.beans.factory.annotation.Autowired;

spring boot servlet 注入

spring boot 注入servlet的方法是借助ServletRegistrationBean这个类 例子如下: 先建一个servlet import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.Ht

servlet关于service()的实现

servlet关于service()的实现 ** 很自然的,我们知道服务器接收到了浏览器请求后将创建servlet对象(关于其生命周期,可以看文结尾链接),然后通过xml映射文件配置,将调用service()方法进行业务实现,那么,是怎么调用service()方法的呢? 首先,明确一点,方法的调用必须经过对象的调用,那么,对象自然而然就是服务器创建的servlet对象,那么,我们创建的功能类,是怎么new出这个对象的呢?这个很简单,实现servlet接口,就能够重写出五种方法,其中就有我们需要的

SpringBoot注入Service失败

Description: The bean 'userService' could not be injected as a 'com.phy.hemanresoruce.service.UserService' because it is a JDK dynamic proxy that implements: Action: Consider injecting the bean as one of its interfaces or forcing the use of CGLib-bas

Spring @Service生成bean名称的规则

今天碰到一个问题,写了一个@Service的bean,类名大致为:BKYInfoServcie.java dubbo export服务的配置: <dubbo:service interface="com.xxx.XxxService" ref="bKYInfoServcie" /> 结果启动报错:找不到名为bKYInfoServcie的bean bean的名字不是我预期的"bKYInfoServcie",临时将bean的名字指定成了b

Servlet中service方法

在学习Servlet的过程中,我们大多时候编码都是直接继承HttpServlet这个类,并且重写doGet ,doPost,但是查看Api时我们会发现Servlet接口 ,GenericSevlet抽象类 以及HttpServlet类中都有service方法,那么为什么我们继承HttpSevlet类时不要重写service 而要重写doGet doPost呢?service的作用是什么捏?? 正如上文中所说的,Servlet中,service方法是一直存在的,因为最高层的接口Servlet(像H