java 属性文件,对一个属性使用多行
2022-09-01 00:29:16
我正在将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
我需要使用的正确文本格式是什么?