Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RedisService withConnection broken due to unwired grailsApplication #72

Open
yuenhsi opened this issue Nov 16, 2016 · 3 comments
Open

Comments

@yuenhsi
Copy link

yuenhsi commented Nov 16, 2016

Currently, calling redisService.withConnection throws a NullPointerException.

RedisService withConnection(String connectionName){
        if(grailsApplication.mainContext.containsBean("redisService${connectionName.capitalize()}")){
            return (RedisService)grailsApplication.mainContext.getBean("redisService${connectionName.capitalize()}")
        }
        ...
    }

Referencing grailsApplication.mainContext causes the exception, with the message being Cannot get property 'mainContext' on null object. I believe autowiring GrailsApplication is not done properly, seeing that this is the only method that makes use of this bean. I look a look at the tests, and it seems like even though retrieving the GrailsApplication bean is tested in a vacuum, the withConnection method itself is not touched.

Currently a workaround for this issue is adding the following to BootStrap.groovy.

def grailsApplication
    def redisService

    def init = { servletContext ->
        redisService.grailsApplication = grailsApplication
    }
@ctoestreich
Copy link
Contributor

What version of grails/plugin?

@yuenhsi
Copy link
Author

yuenhsi commented Dec 11, 2016

This happens on Grails 3.1.12, using what I believe the only version of Redis plugin (v2.0.4) available for Grails 3.x.x.

https://bintray.com/ctoestreich/grails-plugins/redis

@Joshua-Brent-Collins
Copy link

I also see this using Redis-Plugin 2.0.4, Grails 3.2.11, Groovy 2.4.11 and JVM 1.8.0_31

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants