Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
277 views
in Technique[技术] by (71.8m points)

spring - java properties file using multiple lines for one property

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 ?

question from:https://stackoverflow.com/questions/11610789/java-properties-file-using-multiple-lines-for-one-property

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use at the end of the line like

  someSQL = select result 
              from myTable 
              where y = 2  
              and x = ? 
              order by z

Also, beware of any trailing whitespaces since Java looks for consecutive backslash+linebreak when assembling the lines.

Put differently : The backslash has to be the very last caracter on the line before the line break.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...