在Java filter中调用service层方法

在项目中遇到一个问题,在 Filter中注入 Serivce失败,注入的service始终为null。如下所示:

 1 public class WeiXinFilter implements Filter{
 2
 3     @Autowired
 4     private UsersService usersService;
 5
 6     public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
 7         HttpServletRequest req = (HttpServletRequest)request;
 8         HttpServletResponse resp = (HttpServletResponse)response;
 9      Users users = this.usersService.queryByOpenid(openid);
10 }

上面的 usersService 会报空指针异常。

解决方法一

 1 public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
 2         HttpServletRequest req = (HttpServletRequest)request;
 3         HttpServletResponse resp = (HttpServletResponse)response;
 4         ServletContext sc = req.getSession().getServletContext();
 5         XmlWebApplicationContext cxt = (XmlWebApplicationContext)WebApplicationContextUtils.getWebApplicationContext(sc);
 6
 7         if(cxt != null && cxt.getBean("usersService") != null && usersService == null)
 8             usersService = (UsersService) cxt.getBean("usersService");
 9
10         Users users = this.usersService.queryByOpenid(openid);

解决方法二

public class WeiXinFilter implements Filter{

    private UsersService usersService;

    public void init(FilterConfig fConfig) throws ServletException {
        ServletContext sc = fConfig.getServletContext();
        XmlWebApplicationContext cxt = (XmlWebApplicationContext)WebApplicationContextUtils.getWebApplicationContext(sc);

        if(cxt != null && cxt.getBean("usersService") != null && usersService == null)
            usersService = (UsersService) cxt.getBean("usersService");
    }

相关原理:

1. 如何获取 ServletContext

1)在javax.servlet.Filter中直接获取
ServletContext context = config.getServletContext();

2)在HttpServlet中直接获取
this.getServletContext()

3)在其他方法中,通过HttpServletRequest获得
request.getSession().getServletContext();

2. WebApplicationContext 与 ServletContext (转自:http://blessht.iteye.com/blog/2121845):

Spring的 ContextLoaderListener是一个实现了ServletContextListener接口的监听器,在启动项目时会触发contextInitialized方法(该方法主要完成ApplicationContext对象的创建),在关闭项目时会触发contextDestroyed方法(该方法会执行ApplicationContext清理操作)。

ConextLoaderListener加载Spring上下文的过程

①启动项目时触发contextInitialized方法,该方法就做一件事:通过父类contextLoader的initWebApplicationContext方法创建Spring上下文对象。

②initWebApplicationContext方法做了三件事:创建 WebApplicationContext;加载对应的Spring文件创建里面的Bean实例;将WebApplicationContext放入 ServletContext(就是Java Web的全局变量)中

③createWebApplicationContext创建上下文对象,支持用户自定义的上下文对象,但必须继承自ConfigurableWebApplicationContext,而Spring MVC默认使用ConfigurableWebApplicationContext作为ApplicationContext(它仅仅是一个接口)的实 现。

④configureAndRefreshWebApplicationContext方法用 于封装ApplicationContext数据并且初始化所有相关Bean对象。它会从web.xml中读取名为 contextConfigLocation的配置,这就是spring xml数据源设置,然后放到ApplicationContext中,最后调用传说中的refresh方法执行所有Java对象的创建。

⑤完成ApplicationContext创建之后就是将其放入ServletContext中,注意它存储的key值常量。

解决方法三

直接使用spring mvc中的HandlerInterceptor或者HandlerInterceptorAdapter 来替换Filter:

public class WeiXinInterceptor implements HandlerInterceptor {
    @Autowired
    private UsersService usersService;   

    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        // TODO Auto-generated method stub
        return false;
    }

    @Override
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView)
            throws Exception {
        // TODO Auto-generated method stub

    }

    @Override
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
        // TODO Auto-generated method stub

    }
}

配置拦截路径:

    <mvc:interceptors>
        <mvc:interceptor>
            <mvc:mapping path="/**" />
            <bean class="net.xxxx.interceptor.WeiXinInterceptor" />
        </mvc:interceptor>
    </mvc:interceptors>

Filter 中注入 Service 的示例:

 1 public class WeiXinFilter implements Filter{
 2     private UsersService usersService;
 3     public void init(FilterConfig fConfig) throws ServletException {}
 4     public WeiXinFilter() {}
 5     public void destroy() {}
 6
 7     public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
 8         HttpServletRequest req = (HttpServletRequest)request;
 9         HttpServletResponse resp = (HttpServletResponse)response;
10
11         String userAgent = req.getHeader("user-agent");
12         if(userAgent != null && userAgent.toLowerCase().indexOf("micromessenger") != -1){    // 微信浏览器
13             String servletPath = req.getServletPath();
14             String requestURL = req.getRequestURL().toString();
15             String queryString = req.getQueryString();
16
17             if(queryString != null){
18                 if(requestURL.indexOf("mtzs.html") !=-1 && queryString.indexOf("LLFlag")!=-1){
19                     req.getSession().setAttribute("LLFlag", "1");
20                     chain.doFilter(request, response);
21                     return;
22                 }
23             }
24
25             String openidDES = CookieUtil.getValueByName("openid", req);
26             String openid = null;
27             if(StringUtils.isNotBlank(openidDES)){
28                 try {
29                     openid = DesUtil.decrypt(openidDES, "rxxxxxxxxxde");    // 解密获得openid
30                 } catch (Exception e) {
31                     e.printStackTrace();
32                 }
33             }
34             // ... ...
35             String[] pathArray = {"/weixin/enterAppFromWeiXin.json", "/weixin/getWeiXinUserInfo.json",
36                                     "/weixin/getAccessTokenAndOpenid.json", "/sendRegCode.json", "/register.json",
37                                     "/login.json", "/logon.json", "/dump.json", "/queryInfo.json"};
38             List<String> pathList = Arrays.asList(pathArray);
39
40             String loginSuccessUrl = req.getParameter("path");
41             String fullLoginSuccessUrl = "http://www.axxxxxxx.cn/pc/";
42             if(requestURL.indexOf("weixin_gate.html") != -1){
43                 req.getSession().setAttribute("loginSuccessUrl", loginSuccessUrl);
44           // ... ...
45             }
46             ServletContext sc = req.getSession().getServletContext();
47 XmlWebApplicationContext cxt = (XmlWebApplicationContext)WebApplicationContextUtils.getWebApplicationContext(sc);
48
49             if(cxt != null && cxt.getBean("usersService") != null && usersService == null)
50                usersService = (UsersService) cxt.getBean("usersService");
51
52             Users users = this.usersService.queryByOpenid(openid);
53             // ... ...
54             if(pathList.contains(servletPath)){    // pathList 中的访问路径直接 pass
55                 chain.doFilter(request, response);
56                 return;
57             }else{
58                 if(req.getSession().getAttribute(CommonConstants.SESSION_KEY_USER) == null){ // 未登录
59                     String llFlag = (String) req.getSession().getAttribute("LLFlag");
60                     if(llFlag != null && llFlag.equals("1")){    // 处理游客浏览
61                         chain.doFilter(request, response);
62                         return;
63                     }
64                     // ... ...// 3. 从腾讯服务器去获得微信的 openid ,
65                     req.getRequestDispatcher("/weixin_gate.html").forward(request, response);
66                     return;
67                 }else{    // 已经登录
68                     // 4. 已经登录时的处理
69                     chain.doFilter(request, response);
70                     return;
71                 }
72             }
73         }else{    // 非微信浏览器
74             chain.doFilter(request, response);
75         }
76     }
77
78 }
时间: 2024-10-10 00:19:15

在Java filter中调用service层方法的相关文章

如何在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

TimerTask的run()方法里面如何调用service层里面的方法

在java的spring框架中,用Timer和TimerTask来实现定时任务,有时我们要在TimerTask的子类的重写run方法里,调用service层的方法. 但是不管是spring.xml配置的bean还是注解@autoware注入的bean,在执行的时候都会报空指针异常. 这其中主要的问题是TimerTask不是由spring管理的,所以你TimerTask内部的service也无法自动注入,2种解决办法,1.TimerTask交由spring管理:2.通过applicationCon

Spring MVC普通类或工具类中调用service报空空指针的解决办法(调用service报java.lang.NullPointerException)

当我们在非Controller类中应用service的方法是会报空指针,如图: 这是因为Spring MVC普通类或工具类中调用service报空null的解决办法(调用service报java.lang.NullPointerException) 按上述步骤解决完自己的工具类后,你会发现项目运行后仍然报空指针此时你需要在applicationContext.xml 配置文件中添加一行配置文件 如图: 对自己工具类所在的包进行注解扫描,使Spring能够识别自己上面所配置的注解 原文地址:htt

java类中调用servlet

一.Java中调用servlet说明: 我们有时可能需要在Java类中调用Servlet从而实现某些特殊的功能,在JavaAPI中提供了一个URL的类,其中openStream( )方法可以打开URL的连接,并返回一个用于该连接读入的InputStream. 二.Java中调用servlet应用举例: package com.solid.test; import java.io.BufferedReader; import java.io.IOException; import java.io.

iOS 在object-c 中调用c文件 方法

1,新建c 头文件  lib.h 定义 c 函数 2,新建 c 实现文件,新建模板选中 c File  lib.c 3,oc 中调用,引用 c 头文件 lib.h ok .搞定 iOS 在object-c 中调用c文件 方法,布布扣,bubuko.com

继承实现的原理、子类中调用父类的方法、封装

一.继承实现的原来 1.继承顺序 Python的类可以继承多个类.继承多个类的时候,其属性的寻找的方法有两种,分别是深度优先和广度优先. 如下的结构,新式类和经典类的属性查找顺序都一致.顺序为D--->A--->E--->B--->C. class E: def test(self): print('from E') class A(E): def test(self): print('from A') class B: def test(self): print('from B'

Linux上从Java程序中调用C函数

原则上来说,"100%纯Java"的解决方法是最好的,但有些情况下必须使用本地方法.特别是在以下三种情况: 需要访问Java平台无法访问的系统特性和设备: 通过基准测试,发现Java代码比其他语言编写的等价代码慢得多: 其他语言编写的代码已经经过大量测试和调试,并且知道如何将其导出到所有的目标平台上. Java平台有一个用于和本地C.C++代码进行互操作的API,称为Java本地接口(JNI).下面将举例讨论Linux平台下的JNI编程. 1. 创建java类文件 创建一个native

在Java语言中调用存储过程、存储函数、包头、包体

需要拷贝连接Oracle的jar包,路径如下图所示: 连接Oracle数据库的代码: package demo.utils; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class JDBCUtils { private static Stri

Android service的开启和绑定,以及调用service的方法

界面: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout