Skip to content

Instantly share code, notes, and snippets.

@marcosabel
Last active July 8, 2018 00:17
Show Gist options
  • Save marcosabel/1fcf002e900d953e755c7a4e677e8fdc to your computer and use it in GitHub Desktop.
Save marcosabel/1fcf002e900d953e755c7a4e677e8fdc to your computer and use it in GitHub Desktop.
@Override
@Cacheable(value = "invoicesCache", key = "#invoiceId")
public Invoice getInvoice(String invoiceId) {
// Get data from backend service
}
@Override
@CacheEvict(value = "invoicesCache", key = "#invoiceId")
public void evictInvoicesCache(String invoiceId) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment