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

com.seepine.auth.config.InterceptorConfig Maven / Gradle / Ivy

There is a newer version: 2.0.0-beta.18
Show newest version
package com.seepine.auth.config;

import com.seepine.auth.interceptor.AuthenticationInterceptor;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.DependsOn;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**
 * @author seepine
 */
@Configuration
@DependsOn("authProperties")
@AutoConfigureAfter(AuthAutoConfigurer.class)
public class InterceptorConfig implements WebMvcConfigurer {

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

    @Bean
    public AuthenticationInterceptor authenticationInterceptor() {
        return new AuthenticationInterceptor();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy