up vote 8 down vote favorite
2
share [g+] share [fb]

given this in a grails action:

def xml = {
    rss(version: '2.0') {
        ...
    }
}
render(contentType: 'application/rss+xml', xml)

i see this:

<rss><channel><title></title><description></description><link></link><item></item></channel></rss>

is there an easy way to pretty print the xml? something built into the render method, perhaps?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

According to the reference docs, you can use the following configuration option to enable pretty printing:

 grails.converters.default.pretty.print (Boolean)
 //Whether the default output of the Converters is pretty-printed ( default: false )
link|improve this answer
feedback

This is a simple way to pretty-print XML, using Groovy code only:

def xml = "<rss><channel><title></title><description>" +
   "</description><link></link><item></item></channel></rss>"

def stringWriter = new StringWriter()
def node = new XmlParser().parseText(xml);
new XmlNodePrinter(new PrintWriter(stringWriter)).print(node)

println stringWriter.toString()

results in:

<rss>
  <channel>
    <title/>
    <description/>
    <link/>
    <item/>
  </channel>
</rss>
link|improve this answer
one must wonder why there isn't a groovier way to do this... – Dan Nov 12 '09 at 13:43
this does however seem to add whitespace within tags that shouldn't have. There are a couple of notes about this here: jira.codehaus.org/browse/GROOVY-3265 – Jack Jan 3 at 13:23
feedback

Use MarkupBuilder to pretty-print your Groovy xml

def writer = new StringWriter()
def xml = new MarkupBuilder (writer)

xml.rss(version: '2.0') {
        ...
    }
}

render(contentType: 'application/rss+xml', writer.toString())
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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