@Autowired
protected GeolocService geolocService;
@RequestMapping(FoUrls.PREHOME_URL)
public ModelAndView displayHome(final HttpServletRequest request, final Model model) throws Exception {
ModelAndViewThemeDevice modelAndView = new ModelAndViewThemeDevice(getCurrentVelocityPath(request), FoUrls.PREHOME.getVelocityPage());
final String remoteAddress = requestUtil.getRemoteAddr(request);
model.addAttribute(ModelConstants.GEOLOC_REMOTE_ADDRESS, remoteAddress);
final Country country = geolocService.geolocAndGetCountry(remoteAddress);