HttpServletResponse response, ModelMap model) {
logger.info("entro a controladora");
List<Country> countries = new ArrayList<Country>();
countries.add(new Country("IND", "INDIA"));
countries.add(new Country("US", "USA"));
countries.add(new Country("AU", "AUSTRALIA"));
countries.add(new Country("MX", "MEXICO"));
countries.add(new Country("COL", "COLOMBIA"));
model.addAttribute("listCountries", countries);
return "contacto";
}