Variables map reusability among different Expression instances #419
-
Hello, I am using the method I couldn't find a way to pass a hashmap of already converted Is there a way to avoid that? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
If you pass an instance of an Another approach for you might be to create your own custom data accessor, replacing the default |
Beta Was this translation helpful? Give feedback.
-
@oswaldobapvicjr can you let me know how did you approached this? |
Beta Was this translation helpful? Give feedback.
If you pass an instance of an
EvaluationValue
, then no conversion will be done.Since version 3.1.0, this is done in the
DefaultEvaluationValueConverter#convertObject()
method.Another approach for you might be to create your own custom data accessor, replacing the default
MapBasedDataAccessor
.See Data Access chapter in the documentation.