@Service 클래스의 스프링 부트 캐싱이 작동하지 않음 @Service 메서드에 일부 값을 저장하는 데 문제가 있습니다.내 코드: @Service(value = "SettingsService") public class SettingsService { ... public String getGlobalSettingsValue(Settings setting) { getTotalEhCacheSize(); if(!setting.getGlobal()){ throw new IllegalStateException(setting.name() + " is not global setting"); } GlobalSettings globalSettings = globalSettingsRepository.findBySetti..