We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Create cacheable method on service layer on CountryServiceImpl.java as below.
@Cacheable("countryListCache") @Override public List<Country> list() { logger.info("list called... "); return countryDao.findAll(); }
@Cacheable("countryListCache")
@Override
public List<Country> list() {
logger.info("list called... ");
return countryDao.findAll();
}