You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The syntax implied by similarity to JAX-RS @BeanParam ... is to annotate the method parameter explicitly like below (which is what we support).
... but actually FooForm can't be anything but a "form bean" (it is not Java Context and not one of our known scalar types - String, Long, LocalDate ... etc).
Doing this because we can and this is likely that people do this a lot.
That is:
Treat
FooForm
method parameter as if was annotated with@Form
(because it can't be anything else).The syntax implied by similarity to JAX-RS
@BeanParam
... is to annotate the method parameter explicitly like below (which is what we support).... but actually FooForm can't be anything but a "form bean" (it is not Java Context and not one of our known scalar types - String, Long, LocalDate ... etc).
The text was updated successfully, but these errors were encountered: