0

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

n92
  • 7,424
  • 27
  • 93
  • 129

1 Answers1

-1

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

n92
  • 7,424
  • 27
  • 93
  • 129