@RequestMapping(value = "/{restaurantId}/{userId}", params = "form", method = RequestMethod.GET)
public String createForm(@PathVariable("restaurantId") Long restaurantId,
@PathVariable("userId") Long userId,
Model model) {
RecommendationFormBean recBean = new RecommendationFormBean();
Restaurant restaurant = this.restaurantRepository.findRestaurant(restaurantId);
recBean.setRestaurantId(restaurantId);
recBean.setName(restaurant.getName());
model.addAttribute("recommendation", recBean);
//currentUserId is part of the implicit model due to spring security
//model.addAttribute("userId", userId.toString());
return "recommendations/create"; ///" + restaurantId + "/" + userId;