Hi,
I found some other neat things while editing Spring files in my project using IDEA.
1- Searching for the Usage of a class shows where it is used in Spring XML files:
Here you can see it has found that DbHelper is used in several spring xml files. Cool !
2- Completion works for .properties values
When you edit a Spring file, you can set values by referencing a property defined in a .properties file.
For example, in the screenshot below, by using ${DbSchema.commun} as a value of an bean attribute, Spring can be instructed to load the masteri.properties file, and replace ${DbSchema.commun} with the value defined there.
IDEA is so smart (well it’s development team is), that code completion will display the properties defined in the .properties files!
Another very handy feature….
GC

