17springboot+springmvc拦截器做登录拦截

本文介绍了如何在SpringBoot项目中利用Spring MVC的拦截器实现登录拦截。首先,创建一个实现HandlerInterceptor接口的拦截器类,接着在配置类InterceptorConfig中注册该拦截器并覆盖addInterceptors方法。通过浏览器访问测试,验证了拦截器的有效性。在实际项目中,如TokenInterceptor和WebMvcConfig的配置,可以进一步完善拦截逻辑。
摘要由CSDN通过智能技术生成

1 按照Spring MVC的方式编写一个拦截器类,实现HandlerInterceptor接口

package com.bjpowernode.springboot.interceptor;

import org.springframework.web.servlet.HandlerInterceptor;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class LoginInterceptor implements HandlerInterceptor {
   
    @Override //进入Controller之前执行该方法
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
   
        //登录拦截的业务逻辑
        System.out.println("-------登录请求拦截器--------------");
        System.out.println(request.getRequestURI().toString());
        
        Object object = request.getSession().getAttribute("user");
        if (object == null) {
   
            System.out.println("用户没有登录");
            return false;
        }

        //继续提交请求,false 请求不提交了
        return true;

    }
}

2 通过配置类注册拦截器

在03-springboot-web中创建一个config包,创建一个配置类InterceptorConfig,并实现WebMvcConfigurer接口, 覆盖接口中的addInterceptors方法,并为该配置类添加@Configuration注解,标注此类为一个配置类,让Spring Boot 扫描到,这里的操作就相当于SpringMVC的注册拦截器 ,@Configuration就相当于一个applicationContext-mvc.xml

package com.bjpowernode.springboot.config;

import com.bjpowernode.springboot.interceptor.LoginInterceptor;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
public class InterceptorConfig implements WebMvcConfigurer {
   
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值