I am storing sql in a properties file and injecting it using spring this works :
someSQL = select result from myTable where y = 2 and x = ? order by z
but for readibility I want this :
someSQL = select result
from myTable
where y = 2
and x = ?
order by z
What is the correct text formatting I need to use ?