-
I'm using the Java POJO's generated by Pkl to instantiate configuration objects in memory ( in our automations ) and then render them into a Pcf format, which is then used as the configuration for a generalized application ( the application is purely user input driven )
I'm wondering what's going on What we have
|
Beta Was this translation helpful? Give feedback.
Answered by
odenix
Jan 24, 2025
Replies: 1 comment
-
Value renderers can only render Pkl values (i.e., what’s returned by |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
fhalde
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Value renderers can only render Pkl values (i.e., what’s returned by
Evaluator.evaluate()
), not arbitrary Java objects such asTableMapping
.