码迷,mamicode.com
首页 > 编程语言 > 详细

filter、servlet引用springmvc注解

时间:2014-12-19 15:56:38      阅读:339      评论:0      收藏:0      [点我收藏+]

标签:获取springmvc的注解

概述:最近做的两个项目都用到了,所以想着把它整理起来方便以后用,不多说了,现在就将代码附上

我的活动平台filter:

public class SysFilter implements javax.servlet.Filter {

    private IUserService userService;

    private IBasDao basDao;


    @Override//在其初始化的时候获取

    public void init(FilterConfig filterConfig) throws ServletException {

        //这里面才是关键所在

        ServletContext context = filterConfig.getServletContext();

        ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(context);

        userService = (IUserService) ctx.getBean("userService");

        basDao =(IBasDao)ctx.getBean("basDao");

        //To change body of implemented methods use File | Settings | File Templates.

    }

我的CRM项目Servlet:

public void init(ServletConfig servletConfig) throws ServletException {
	ServletContext servletContext = servletConfig.getServletContext();
	WebApplicationContext webApplicationContext = WebApplicationContextUtils
			.getWebApplicationContext(servletContext);
	userService = (IUserService) ctx.getBean("userService");
	
上面是我自己搞的,稍后我会将公司的也写上去。


本文出自 “小博客” 博客,请务必保留此出处http://9686567.blog.51cto.com/9676567/1591717

filter、servlet引用springmvc注解

标签:获取springmvc的注解

原文地址:http://9686567.blog.51cto.com/9676567/1591717

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!