Servlet injects service business beans

Source: Internet
Author: User

The spring container is used in the project to manage the business beans, and after receiving the request parameters from the foreground in the servlet, the calling business bean is always wrong.

The department code is as follows

[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>


Use @resource annotation to inject, always error to say what

Name XXX is not bound in this Context

Let people depressed death, row wrong for a long time, and in action everything is normal, who knows why give me the next,

Here I find a way to solve the problem to share with you:

[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. }

Servlet injects service business beans

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.