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 could use BiConsumer to replace the ActionMethodOrderBean#method prop.
And using consumer.accept(target, actualParameters.toArray())
BTW, importing extra dependencies of method handle is needless, it's better than ASM.
RuleProxy
has been sped up by caching the reflective access inv3.4.0
.However it still invokes native reflection, and there is a better way to optimize the performance :
e.g. https://github.com/FasterXML/jackson-modules-base/blob/2.15/blackbird/README.md
benchmarks https://github.com/FasterXML/jackson-modules-base/blob/2.15/blackbird/benchmarks/README.md
It could use BiConsumer to replace the
ActionMethodOrderBean#method
prop.And using
consumer.accept(target, actualParameters.toArray())
BTW, importing extra dependencies of method handle is needless, it's better than ASM.
The text was updated successfully, but these errors were encountered: