Spring 3.0使用radiobutton

时间:2013-02-06 07:57:46

标签: java jsp spring-mvc

我试图在Spring使用radiobutton。

我已经按照本教程进行了正常工作:

http://www.mkyong.com/spring-mvc/spring-mvc-radiobutton-and-radiobuttons-example/

但是,本教程使用的是Spring 2.5,我想在Spring 3.0中是否还有其他方法可以做到这一点。

在上面的教程中,需要自定义模型才能存储单选按钮值。

那么有没有办法将单选按钮值直接传递回控制器,而不是通过自定义模型?

控制器中有这样的东西:

public void handleExport(@ModelAttribute("exportType") String exportTye)

虽然exportType是单选按钮值。

非常感谢!

1 个答案:

答案 0 :(得分:0)

我相信您可以使用@RequestParam访问它:

<form:radiobutton path="exportType" value="MyType"/>

public void handleExport(@RequestParam("exportType") String exportTye)