이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Chapter 10. @Form
This is a RESTEasy-specific annotation that allows you to reuse any
@*Param
annotation within an injected class. RESTEasy instantiates the class and injects values into any annotated @*Param
or @Context
property. This is useful if you have many parameters on your method and you want to condense them into a value object.
When someone posts to
/myservice
, RESTEasy instantiates an instance of MyForm
and injects the form parameter stuff
into the stuff
field, the header myheader
into the header
field, and call the setFoo
method with the @PathParam
variable of foo
.