Home > Java > javaTutorial > body text

How Can I Bind Complex Objects from GET Request Parameters in Spring MVC?

DDD
Release: 2024-11-21 10:23:10
Original
263 people have browsed it

How Can I Bind Complex Objects from GET Request Parameters in Spring MVC?

Parsing Complex Objects from GET @RequestParam in Spring MVC

Consider a scenario where you need to implement a filter form in a page that queries a table. The filter criteria is submitted to a controller action through a GET request, typically in the format: http://foo.com/system/controller/action?page=1&prop1=x&prop2=y&prop3=z.

To handle such scenarios, Spring MVC typically requires you to define a controller method with multiple @RequestParam parameters to retrieve each property individually:

@RequestMapping(value = "/action")
public @ResponseBody List<MyObject> myAction(
    @RequestParam(value = "page", required = false) int page,
    @RequestParam(value = "prop1", required = false) String prop1,
    @RequestParam(value = "prop2", required = false) String prop2,
    @RequestParam(value = "prop3", required = false) String prop3) { ... }
Copy after login

Suppose you have defined a MyObject class with properties prop1, prop2, and prop3. To simplify the parameter handling, you may desire to bind all the request properties directly to an instance of MyObject.

@RequestMapping(value = "/action")
public @ResponseBody List<MyObject> myAction(
    @RequestParam(value = "page", required = false) int page,
    MyObject myObject) { ... }
Copy after login
Copy after login

Can Binding to Complex Objects be Achieved?

Yes, it is possible to bind request parameters to complex objects using Spring MVC.

How to Bind to Complex Objects

To achieve this binding, simply remove the @RequestParam annotation from the object parameter:

@RequestMapping(value = "/action")
public @ResponseBody List<MyObject> myAction(
    @RequestParam(value = "page", required = false) int page,
    MyObject myObject) { ... }
Copy after login
Copy after login

With this modification, Spring MVC will automatically bind the request parameter values to the corresponding properties of the MyObject instance.

The above is the detailed content of How Can I Bind Complex Objects from GET Request Parameters in Spring MVC?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template