-
Feature Request
-
Resolution: Done
-
Major
-
2.2-beta-1
For a project I'm working on, I need to post a form with both an invoice and a shipping address. I would like to use the following class:
public class Person { @Form(prefix="invoice") private Address invoice; @Form(prefix="shipping") private Address shipping; } public class Address { @FormParam("street") private String street; }
And then post a form with the values:
invoice.street=SomeStreet
shipping.street=SomeOtherStreet
I have implemented this feature as an extension of the FormInjector. I would like to contribute this to RESTEasy.
- blocks
-
RESTEASY-524 Allow collections of objects in a form object
- Closed