UTF-8 formatting is not properly working during the loading of property
Closed this issue · 3 comments
yuraku commented
I'm getting in trouble with the loading of property with the special characters.
in the .properties file i have a key-value pair:
password.test=blablah_^%x05f
After the load, i'm getting the string value blabla_^null05f
Any reasons why I'm getting this value, or any workarounds for this case?
Thanks in advance
lviggiano commented
add @DisableFeature({VARIABLE_EXPANSION, PARAMETER_FORMATTING})
to the method or the class.
yuraku commented
Now it works for me with @DisableFeature({PARAMETER_FORMATTING})
. Thanks