@Cache
어노테이션들은 외부에서 불려지는 메서드에서만 작동한다.
- 이유는 프록시 모드가 기본이기 때문에 내부 호출 메서드에서는 작동하지 않는다.
- 그래서 추가가 안됐던 것이었음...
- 내부에서 불려지는 메서드에 캐싱을 하면 적용되지 않는다
- https://docs.spring.io/spring-framework/docs/3.2.x/spring-framework-reference/html/cache.html#cache-annotation-enable
- 여길 보면
In proxy mode (which is the default), only external method calls coming in through the proxy are intercepted. This means that self-invocation, in effect, a method within the target object calling another method of the target object, will not lead to an actual caching at runtime even if the invoked method is marked with @Cacheable - considering using the aspectj mode in this case.
프록시모드에서는 외부에서 호출되는 메서드에서만 사용가능하다고 한다