@EnableCaching simplifies the setup and configuration of caching in Spring application. By adding this annotation to our configuration class, caching support is enabled with minimal effort.
Change :
Added dependency "spring-boot-starter-cache" and @EnableCaching in class Application
@EnableCaching simplifies the setup and configuration of caching in Spring application. By adding this annotation to our configuration class, caching support is enabled with minimal effort.
Closes #47