我这边重写的方法参数是不是不对?别人的是ActionInvocation

package com.roboy.Interceptor;

import javax.servlet.http.HttpSession;

import com.jfinal.aop.Interceptor;
import com.jfinal.aop.Invocation;

public class MyInterceptor implements Interceptor{

    @Override
    public void intercept(Invocation in) {
        // TODO Auto-generated method stub
        HttpSession session = in.getController().getSession();
        if(session == null ){
            in.getController().redirect("/login");
        }
        else{
            String nickname = (String) session.getAttribute("username");
            if(nickname != null ){
                
                
            }else{
                in.getController().redirect("/login");
            }
        }
    }

}

评论区

JFinal

2017-06-23 17:30

ActionInvocation 是老版本的 jfinal 用的,后续新版本改成了 Invocation,以 jfinal 手册中的例子为准

热门反馈

扫码入社