I am just getting into Grails having had some experience with Rails, and I am looking at creating an app where I have to primarily persist tree structures (and query them as well).
Rails has several very useful acts_as
helpers for representing domain objects as different data structures, such as acts_as_tree
. From my initial reading it doesn't appear that Grails has anything like this.
Is there any support for this, or are there Grails plugins that offer the same thing?