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
It must be possible to create beans with final fields.
Final fields are usually initialized via constructor parameters.
Algorithm must try to map parameters via name.
Otherwise it could be explicitely mapped via an annotation on constructor parameters
Constraints:
Class must not have a noarg constructor
Constructor must not have any parameters which can't be mapped to (constant) fields or to super classes
The text was updated successfully, but these errors were encountered:
We could introduce an explicit annotation for constructor parameter mappings, if mapping by name doesn't work.
This could contain also mappings to super class fields (To determine if a parameter initializes a field or not)
It must be possible to create beans with final fields.
Final fields are usually initialized via constructor parameters.
Algorithm must try to map parameters via name.
Otherwise it could be explicitely mapped via an annotation on constructor parameters
Constraints:
The text was updated successfully, but these errors were encountered: