전체코드는 아래 github을 참고하도록 한다. github.com/mypiece/springboot-example/tree/master/intercepter-example mypiece/springboot-example 스프링부트 예제. Contribute to mypiece/springboot-example development by creating an account on GitHub. github.com Interceptor는 Controller 메소드 처리 전/후에 공통적으로 어떠한 작업을 처리할 수 있게 해준다. 이것 없이도 기능 구현에는 문제가 없지만 Controller 메소드마다 동일한 기능을 중복으로 정의해야 한다. Filter 와 동일하게 url 패턴을 지정할 수 있다. 구현 방법은 아..