Is it possible to continue a long string on the next line in a Java properties file?
e.g., somehow
myStr=Hello World
and when I g
You need to use \n\ as a solution.
\n\
First two symbols \n - new line for string, third \ - multi-line in properties file.
\n
\
For example (in application.properties):
mail.bodyText=Hello.\n\ This is notification.