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
I have a class A with several fields annotated with @MvcBinding , @FormParam and jakarta validations on them and another class B also with several fields annotated with same annotations and their validation. I have a view with a big form that needs fields from both classes A and B for binding and I decided to extend class B in A just for inheritance with idea that the inherited fields will be binded to the form also. The problem is no binding and validation took place for the inherited fields. Only the fields from class A.
The text was updated successfully, but these errors were encountered:
I have a class A with several fields annotated with
@MvcBinding
,@FormParam
and jakarta validations on them and another class B also with several fields annotated with same annotations and their validation. I have a view with a big form that needs fields from both classes A and B for binding and I decided to extend class B in A just for inheritance with idea that the inherited fields will be binded to the form also. The problem is no binding and validation took place for the inherited fields. Only the fields from class A.The text was updated successfully, but these errors were encountered: