AuthConfig.java 332 Bytes
package org.nafmii.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.util.AntPathMatcher;

@Configuration
public class AuthConfig {

    @Bean
    public AntPathMatcher  antPathMatcher(){
        return new AntPathMatcher();
    }
}