All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.hdis.framework.security.config.InterceptorConfig Maven / Gradle / Ivy

The newest version!
package tech.hdis.framework.security.config;


import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import tech.hdis.framework.security.interceptor.SessionInterceptor;

/**
 * 权限拦截器配置
 *
 * @author 黄志文
 */
@Configuration
public class InterceptorConfig extends WebMvcConfigurerAdapter {

    @Autowired
    private SessionInterceptor sessionInterceptor;

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        super.addInterceptors(registry);
        registry.addInterceptor(sessionInterceptor).addPathPatterns("/**");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy