Adrian Rodriguez
Adrian Rodriguez
Yes, it does. It's working with @groovy.transform.CompileDynamic annotation. Do We have to start using @CompileDynamic instead of @GrailsCompileStatic(TypeCheckingMode.SKIP) ? or In fact there is a bug about it in this...
I'm having same issue. Only when I create the war for tomcat 8.5 `def user = springSecurityService.currentUser if(!user){ log.error "user not found." }`
yes, I have been looking a solution for this but nothing yet.
Same bug!!
what I did was override the OpenFileManagerConnectorController. I created an **OpenFileManagerConnectorController** Controller and I pasted all the code from **OpenFileManagerConnectorController** file at GitHub. Then I added the annotation security: @Secured('ROLE_ADMIN')...
this plugin is overwriting the dedault config: ``` grails.resources.pattern = '/static/**' grails.resources.uri.prefix = '' ``` https://github.com/grails/grails-core/releases/tag/v3.0.12 I think It should not overwrite the default config since we already have other...
The solution is just to write default config in application.config file. `grails.resources.pattern = '/static/**' grails.resources.uri.prefix = ''`
source: 'src/',
Same issue!
Thank you. It works for me now.