Sérgio Michels
Sérgio Michels
@sberyozkin Is there an approach suggested at the moment? I'm using Jersey because of design constraints, but this tool helped me a lot on doing contract-first, generating my Java classes...
@kilianc I think that the correct is usernameInput.setMask('msk')
Sorry for the late reply! I did not see the notification. Steps to reproduce 1. Create a project with yeoman angular generator `yo angular test-app` 2. Import in Eclipse, converting...
What's the diff between ApplicationContextAware and setting applicationContext in the bean definition? Maybe the issue is with ApplicationContextAware?
@robfletcher It's just a controller action, not a static method.
@robfletcher I think that using `Holders.grailsApplication.mainContext` will solve the issue. I will do some tests.
hmmm I'm getting a hard time trying to reproduce this again.
I made a suggestion in #35.
@robfletcher This issue seems related to the another that I created. I tested here and changing: ``` applicationContext?.getBean('gsonBuilder', GsonBuilder) ?: new GsonBuilder() ``` to ``` Holders.grailsApplication.mainContext.getBean('gsonBuilder', GsonBuilder) ``` solves the...
This will probably solve https://github.com/robfletcher/grails-gson/issues/40 too