我已经通过Spring Tool Suite IDE
创建了MVC模板,但我无法实现,如何从jsp
获取值。例如 - 我在jsp
<input type="text" />
但如何获得控制器的价值,以便能够在那里使用它?我知道,当我在控制器中为模型添加属性时,我可以通过${name}
访问它,但是如何以其他方式进行操作?
答案 0 :(得分:9)
您需要一个表单,然后将值提交给控制器......
类似的东西:
<form name="foo" action="/foo/bar" method="post">
<input name="fieldName" type="text" />
<input type="submit" value="Submit">
<form>
然后在你的控制器中获取它:
@Controller
@RequestMapping(value = "/foo")
public class AdminController {
@RequestMapping(value = "/bar")
public String testAction(@RequestParam String fieldName) {
// yourValue contain the value post from the html form
return "yourview";
}
}