Spring Boot Features | Caching

PHOTO EMBED

Thu Jun 09 2022 13:39:30 GMT+0000 (Coordinated Universal Time)

Saved by @Manu

@Component 
public class MyMathService {
    @Cacheable("piDecimals") 
    public int computePiDecimal(int precision) {
           ... 
    }
}
content_copyCOPY

https://javatechonline.com/spring-boot-features/