synchronized (this) {
ELResolver elResolver = facesContext.getApplication().getELResolver();
ELContext elContext = facesContext.getELContext();
CountryService countryService = (CountryService) elResolver.getValue(elContext, null, "countryService");
countryMap = countryService.getCountryMap();
}
}
return countryMap;
}