뭔가 인증할때 구현하면 개 편함 api 요청전 키 검증용으로 진행 @Bean public RestApiInterceptor restApiInterceptor() { return new RestApiInterceptor(); } 빈 생성 // Interceptor 등록 @Override public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor(restApiInterceptor()).addPathPatterns("/api/v1/**"); } public class RestApiInterceptor extends HandlerInterceptorAdapter { private static final Logger log..