Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there anybody who has written a universal action for iterating through all params values and setting these values on an object?

I want to write something like this:

def updateSomeObject = {obj->
    for (def key : params.keySet()) {
        if (obj.hasProperty(key) != null) {
            def strValue = params[key]
            obj[key] = strValue
    }
}

but this works only for String values. In my case there are one to one associations, so it has to work with objects too.

I would like not to set properties (their names) to object, which values are null.

share|improve this question
have you tried using ..metaclass.hasProperty()? obj."$key" = val? – netbrain May 16 '11 at 10:47
I have tried after your post, but it gave the same result..problem in strVal, in one case it have to be int, for another property String or object..etc. Now it works only with String type. – Bella May 16 '11 at 12:19

2 Answers

It looks like you're trying to bind request parameters to an object. You really shouldn't need to write your own code to do this, as the Grails controllers provide a bindData method that does this already.

share|improve this answer
Don please see one of my questions (title: update unidirectional one to one problem). bindData does not work, and I have to try something like this example...I ask this question, because I did not find my previous question answer. – Bella May 16 '11 at 10:32
Bella,Could you then refrase the relevant part of your previous question here. Otherwise it will be difficult to help you find an answer. – Ruben May 16 '11 at 11:08
Ruben ok.In my previous question, I wrote, that I have 2 domain classes with unidirectional one to one association. class Domain1 { String val11 Domain2 domain2 } class Domain2 { String val21 } I could successfully create objects, but after association I could not update domain1 object. I have used obj.properties = params. After updating, When I want to save domain1, I got an exception: NullPointerException exception: ERROR gorm.SavePersistentMethod - Cannot get property 'class' on null object java.lang.NullPointerException: Cannot get property 'class' on null object at – Bella May 16 '11 at 11:32
I think exception throw, because it tries to update domain2 data in domain1, but it fails because domain2 = null – Bella May 16 '11 at 11:50

Is this what you want to do?

obj.properties = params

Hope that helps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.