I'm converting a standalone command-line app to use Spring. It's basically a report generating thing; it reads some stuff from a database and then formats it and then ftp uploads that to an IBM mainframe to generate billing.
For the program's configuration I'm using the Jakarta Commons Configuration package and have several xml configuration files; email addresses to email results to, ftp logins and passwords, etc.
What I don't understand is should I move everything from Commons Configuration to my Spring config files? It seems more natural to only use the Spring configuration files for wiring together the classes.


Reply With Quote