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
Since JDK8 javac (with -parameters option) adds parameter names to classes during compilation, mybatis should be able to use these for object instantiation rather than relying on finding a constructor with the correct ordering of parameters.
Mybatis already uses these parameters to remove the need for @Param annotations in Mapper files, this was added in #549
Is this something that has been considered?
The text was updated successfully, but these errors were encountered:
If you can give me pointers on where mybatis initialises objects, I should have some time in a couple of weeks to contribute (unless you get to it first, of course)
Since JDK8 javac (with
-parameters
option) adds parameter names to classes during compilation, mybatis should be able to use these for object instantiation rather than relying on finding a constructor with the correct ordering of parameters.Mybatis already uses these parameters to remove the need for
@Param
annotations in Mapper files, this was added in #549Is this something that has been considered?
The text was updated successfully, but these errors were encountered: