Possible Duplicate:
Import XML into a Grails Domain Class
say am having the xml file like below, Now i want to insert these firstname, deptname and empid into the database using grails can anyone suggest an idea in this.
<employees>
<employee>
<firstname>Marios</firstname>
<deptname>ITdepartment</deptname>
<empid>123</empid>
</employee>
<employee>
<firstname>Ben</firstname>
<deptname>Management</deptname>
<empid>124</empid>
</employee>
</employees>