You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
849 B
Java
32 lines
849 B
Java
package egovframework.configProperties;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* packageName : egovframework.config
|
|
* fileName : InterceptorProperties
|
|
* author : 박성영
|
|
* date : 25. 5. 19.
|
|
* description :
|
|
* ===========================================================
|
|
* DATE AUTHOR NOTE
|
|
* -----------------------------------------------------------
|
|
* 25. 5. 19. 박성영 최초 생성
|
|
*/
|
|
@Setter
|
|
@Getter
|
|
@Configuration
|
|
@ConfigurationProperties(prefix = "interceptor")
|
|
public class InterceptorProperties {
|
|
|
|
private List<String> interceptorExclude;
|
|
private List<String> refererExclude;
|
|
|
|
}
|
|
|