Skip to content

Instantly share code, notes, and snippets.

@mattn
Created June 26, 2017 04:19
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 mattn/f9cc8c06588a68d857f4c28756873f98 to your computer and use it in GitHub Desktop.
Save mattn/f9cc8c06588a68d857f4c28756873f98 to your computer and use it in GitHub Desktop.
```java
@RequestMapping(value="/hoge2/←フォームのあるhtml名")
public String text(@RequestParam("text←値のname") String
text,@ModelAttribute("HogeForm←値をセットしたいmodel") HogeForm hogeForm) {
hogeForm.setText(text);
return "hoge2";
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment