up vote 1 down vote favorite
3
share [g+] share [fb]

I am reading an XML file with a schema based on a Domain Class.

Here is a simple example for illustration (my current situation concerns a lot of fields from a lot of classes) :

class Player {
  String name
  Date birthDate
}

The XML file to read is :

<players>
<player name='P1' birthDate='12-09-1983'/>
</players>

So my question is: When parsing the XML file, I create Player instances with the following Groovy code:

def players = new XmlSlurper().parse(xmlFile)
players.player.each() {p ->
  new Player(name: p.@name, birthDate: p.@birthDate).save()
}

Is there another simpler way to do it ? Like params binding when creating/updating a domain object using code like new Player(params) or player.properties = params ?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 7 down vote accepted

Actually, you can give directly the list of attributes to your domain class constructor with attributes().

def players = new XmlSlurper().parse(xmlFile)
players.player.each() {p ->
    new Player(p.attributes()).save()
}
link|improve this answer
Thx! This was exacly what I needed – fabien7474 Oct 6 '09 at 14:44
feedback

Your Answer

 
or
required, but never shown

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