rest icon indicating copy to clipboard operation
rest copied to clipboard

Consider having @BeanParam support Record Classes

Open fwgreen opened this issue 3 years ago • 10 comments

Records look like a good fit for @BeanParam support:

record PersonForm(@FormParam("name") String name, @FormParam("age") int age) {}
//...

@POST
@Produces(MediaType.TEXT_HTML)
public Response post(@BeanParam PersonForm form) {
    //...
}

fwgreen avatar Oct 15 '20 20:10 fwgreen