Spring MVC bean映射到HTTP GET请求参数,类似于@BeanParam

时间:2013-11-25 18:57:07

标签: spring rest spring-mvc

在Jersey中有@BeanParam注释,我可以将请求参数映射到bean属性。

在Spring中,我只能找到@RequestBody,它显然适用于请求体,而不是请求参数。

有没有办法让请求参数使用Spring映射到bean?

1 个答案:

答案 0 :(得分:17)

只需使用名称与您的请求参数匹配的字段创建Pojo Java Bean。

然后使用此类作为请求处理程序方法的参数(不带任何其他注释)

public class Example {
   private String x;
   private Integer y;

   //Constructor without parameter needed!
   public Example(){}

   //Getter + Setter
}

@Controller
@RequestMapping("someUrl")
public class SomeController {

    @RequestMapping
    public String someHandler (Example example) {
          System.out.println(example.getX());
          return "redirect:someOtherUrl";
    }
}