Skip to content

Instantly share code, notes, and snippets.

@ricston-git
Created October 11, 2013 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricston-git/6934194 to your computer and use it in GitHub Desktop.
Save ricston-git/6934194 to your computer and use it in GitHub Desktop.
@RequestMapping(value="/", method= RequestMethod.CREATE)
public String create(Model uiModel)
{
//This will add a property to the view "view1"
uiModel.addAttribute("created",true);
return "view1";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment