Grails没有直接提供对RSS和Atom的支持. You could construct RSS or ATOM feeds with the render method’s XML capability.
可以通过Grails Feeds 插件 来构建RSS和Atom。
改插件使用流行的 ROME 库. 下面是简单使用这个插件的例子:def feed = {
render(feedType:"rss", feedVersion:"2.0") {
title = "My test feed"
link = "http://your.test.server/yourController/feed"
Article.list().each() {
entry(it.title) {
link = "http://your.test.server/article/${it.id}"
it.content // return the content
}
}
}
}