We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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();
}