grailsApplication null in Service

时间:2012-11-23 15:58:07

标签: grails

我的Grails应用程序中有一个服务。但是我需要在我的应用程序中找到配置以进行某些配置。但是,当我尝试在我的服务中使用def grailsApplication时,它仍然为空。

我的服务在“服务”下。

class RelationService {

    def grailsApplication

    private String XML_DATE_FORMAT = "yyyy-MM-dd"
    private String token = 'hej123'
    private String tokenName
    String WebserviceHost = 'xxx'

    def getRequest(end_url) {

        // Set token and tokenName and call communicationsUtil
        setToken();
        ComObject cu = new ComObject(tokenName)

        // Set string and get the xml data
        String url_string = "http://" + WebserviceHost + end_url
        URL url = new URL(url_string)

        def xml = cu.performGet(url, token)

        return xml
    }

    private def setToken() {
        tokenName = grailsApplication.config.authentication.header.name.toString()
        try {
            token = RequestUtil.getCookie(grailsApplication.config.authentication.cookie.token).toString()
        }
        catch (NoClassDefFoundError e) {
            println "Could not set token, runs on default instead.. " + e.getMessage()
        }
        if(grailsApplication.config.webservice_host[GrailsUtil.environment].toString() != '[:]')
            WebserviceHost = grailsApplication.config.webservice_host[GrailsUtil.environment].toString()

    }

}

我看过Inject grails application configuration into service,但由于一切看似正确,它没有给我答案。

但是,我这样称呼我的服务:def xml = new RelationService().getRequest(url)

修改

忘记输入我的错误,即:Cannot get property 'config' on null object

1 个答案:

答案 0 :(得分:3)

您的服务是正确的,但您打电话的方式不是:

def xml = new RelationService().getRequest(url)

因为您“手动”实例化一个新对象,所以实际上绕过了Spring的注入,因此“grailsApplication”对象为空。

您需要做的是使用Spring注入您的服务:

class MyController{

    def relationService 

    def home(){
       def xml = relationService.getRequest(...)
    }

}