views:

15

answers:

1

I have a Grails application and I use the Config.groovy to add a directory configuration accessible in my controller with grailsApplicatin.config.files.location

My directory is "files" to add files in the folder. So I would like that all uploaded files comes into /MyApp/files. I create it on Bootstrap if not exists

During the dev it's right all files got to files. But when I deploy on tomcat, the directory is created in the $CATALINA_HOME/bin/

Why ?

Thanks a lot.