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 toString() isn't automatically called like other templating frameworks due to security concerns, you will have to output your data down to primitive types yourself.
For my case, I'm using Kotlin, so I just ended up implementing extension methods on data types I'm interested in. In Java, you probably have to create and import static utility methods instead.
For example, any type/class I have that references LocalDateTime gives an error message:
"no suitable method found for writeUserContent(java.time.LocalDateTime)"
How do we add our own "custom renderers" that don't already have support?
Am I completely missing how to do this in the documentation?
I'm running under Spring Boot 3.3.10 and JTE 3.1.16.
Thanks!
The text was updated successfully, but these errors were encountered: