我将 sql 存储在属性文件中并使用 spring 注入它,这很有效:
someSQL = select result from myTable where y = 2 and x = ? order by z
但为了便于阅读,我想要这个:
someSQL = select result
from myTable
where y = 2
and x = ?
order by z
我需要使用的正确文本格式是什么?