You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
I have a Grails 3.3.6 app that uses singleton controller and service classes. When trying to use withHttp() in my service class I get: Caused by: groovy.lang.MissingMethodException: No signature of method
I eventually found a stop-gap solution after reading graemerocher's comment in grails/grails-core#9648
Using this resolved my problem although it's not the best approach: class Application extends GrailsAutoConfiguration { static { ExpandoMetaClass.enableGlobally() }
I'd like to request this issue be investigated to have this plugin provide better singleton support. If there is a better alternative to the solution I listed above I'd love to see it!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have a Grails 3.3.6 app that uses singleton controller and service classes. When trying to use withHttp() in my service class I get:
Caused by: groovy.lang.MissingMethodException: No signature of method
I eventually found a stop-gap solution after reading graemerocher's comment in grails/grails-core#9648
Using this resolved my problem although it's not the best approach:
class Application extends GrailsAutoConfiguration { static { ExpandoMetaClass.enableGlobally() }
I'd like to request this issue be investigated to have this plugin provide better singleton support. If there is a better alternative to the solution I listed above I'd love to see it!
The text was updated successfully, but these errors were encountered: