Reputation: 11
I am using spring batch processing code of a java application in my Grails application. I wanted to know where can i keep the xml files of a java application inside the grails application. How can i call that xml file from the grails application?
Upvotes: 1
Views: 64
Reputation: 35951
There is a special place for such config files:
grails-app/conf/
Put it here, and file will be accessible from classpath, as a root element
Upvotes: 1