在SpringMVC+mybatis框架中,servlet调用的service注解

时间:2021-10-10 13:14:45

    在最近的项目中,需要用到servlet来做跳转服务,但为了能简化操作,我就将servlet放到原本的项目中,以求可以直接调用接口。但是在实际操作中,servlet并不能直接调用@service的注解,因为springmvc并没有将其注入。即

在servlet中,直接
@service
private StudentService studentService; //是错误的
 

  通过网上查找资料,一般会有两中方法

   1.将servlet当作一个springmvc的bean,将其依赖注入

   2.直接得到springmvc的上下文,在通过getBean()方法得到

但是,经过我自己的实验,好像都不行。


第一种方法:

  我将serlvet注解为@Component,但是运行后还是提醒为 can't create instance ,在去掉全部的注解后,则显示为null,即没有调用方法。


第二种方法:

  网上代码:

ApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext(this.getServletContext());
Service s = (Service)ctx.getBean("service"); //好像很多人都可以通过这个方法得到service实例,但是我的不行。

我的方法:

后来,我发现,他们的配置文件是application.xml文件,但是我的是SpringMVC.xml文件,所以会有得不到的情况。经过调整,我的service实例可以通过以下代码得到:

ApplicationContext springContext = new FileSystemXmlApplicationContext(springConfPath/*即在绝对路径下的<span style="font-size:14px;">SpringMVC.xml</span>*/);
Service s=springContext.getBean(service.class); //就可以得到service的实例,亲测有效。