com.github.edgar615.util.spring.appkey.ClientInterceptorProperties Maven / Gradle / Ivy
 The newest version!
        
        package com.github.edgar615.util.spring.appkey;
import java.util.List;
import java.util.Map;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Service;
/**
 * Created by Administrator on 2016/4/22.
 */
@ConfigurationProperties(prefix = "client.interceptor")
@Service
public class ClientInterceptorProperties {
  private List ignoreUrl;
  public List getIgnoreUrl() {
    return ignoreUrl;
  }
  public void setIgnoreUrl(List ignoreUrl) {
    this.ignoreUrl = ignoreUrl;
  }
}
       © 2015 - 2025 Weber Informatics LLC | Privacy Policy