我已经通过创建 MVC 模板Spring Tool Suite IDE
,但我不知道如何从jsp
. 例如 - 我在jsp
<input type="text" />
但是如何让控制器的价值能够在那里使用呢?我知道,当我在控制器中为模型添加属性时,我可以通过 访问它${name}
,但是如何以另一种方式进行呢?
我已经通过创建 MVC 模板Spring Tool Suite IDE
,但我不知道如何从jsp
. 例如 - 我在jsp
<input type="text" />
但是如何让控制器的价值能够在那里使用呢?我知道,当我在控制器中为模型添加属性时,我可以通过 访问它${name}
,但是如何以另一种方式进行呢?
您需要一个表单,然后将值提交给控制器...
就像是 :
<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";
}
}