依存関係の追加 Spring側にはキャッシュ処理のインターフェースのみ用意されているので、キャッシュ使用時には別途実装を用意する必要がある。 Caffeineはキャッシュの実装を提供するモジュールである。 dependencies { // Spring Boot Starter Cache implementation 'org.springframework.boot:spring-boot-starter-cache' // Caffeine implementation "com.github.ben-manes.caffeine:caffeine:3.0.5" } キャッシュを有効化…