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 interceptorExclude; private List refererExclude; }