Where to place resources in Grails project?
问题 I am wondering if there is a designated place for resource files in a Grails application? I have a csv file that gets loaded into a map (nothing major) but didn't quite know where to put it in the project. So my question is, is there a dedicated place in the project to place this file? (If so, where?) Or is it better to place it outside of the project? 回答1: If the csv is going to need updating from time to time, I'd put it external to your grails folder, and point to it from config.groovy. If