private ObjectMessageSource messageSource;
@RequestMapping("/advisor/{country}/{city}/{name}")
public String hotel(@PathVariable String country, @PathVariable String city, @PathVariable String name, Model model) {
Hotel hotel = getHotel(country, city, name);
model.addAttribute(hotel);
model.addAttribute("reviewsSummary", toChartModel(this.hotelService.getReviewSummary(hotel)));
return "hotel";
}