AuthConfig.java
340 Bytes
package org.nafmii.gateway.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();
}
}