n92
n92

Reputation: 7592

Grails 3: Not able to set configuration inside plugin specific application.groovy file

I am trying to set the below config properties inside myapp/plugins/myPlugin/conf/application.groovy file, it seems to be not picking up the values

grails.controllers.upload.maxFileSize = 90000000 //9MB
grails.controllers.upload.maxRequestSize = 90000000 //9MB

But if i move this to app level application.groovy file, it works fine.

How to get this working inside plugin specific application.groovy file

Upvotes: 0

Views: 89

Answers (1)

n92
n92

Reputation: 7592

It will be done by adding the settings inside myapp/plugins/myPlugin/conf/runtime.groovy

Upvotes: -1

Related Questions