인터셉터를 이용해 /s가 붙은 주소의 요청을 받으면 인증 체크를 손쉽게 했었다. // CustomApiException package site.metacoding.everytimeclone.handler.ex; public class CustomApiException extends RuntimeException { public CustomApiException(String message) { super(message); } } // CustomException package site.metacoding.everytimeclone.handler.ex; public class CustomException extends RuntimeException { public CustomException(String m..