Adding a method to a domain class - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T09:25:21Z http://stackoverflow.com/feeds/question/194331 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/194331/adding-a-method-to-a-domain-class 2 Adding a method to a domain class qollin 2008-10-11T17:14:26Z 2008-10-14T02:06:39Z <p>I have a domain class containing a couple of fields. I can access them from my .gsps. I want to add a method to the domain class, which I can call from the .gsps (this method is a kind of virtual field; it's data is not coming directly from the database).</p> <p>How do I add the method and how can I then call it from the .gsps?</p> http://stackoverflow.com/questions/194331/adding-a-method-to-a-domain-class/194348#194348 7 Answer by Hates_ for Adding a method to a domain class Hates_ 2008-10-11T17:29:02Z 2008-10-11T17:29:02Z <p>To add a method, just write it out like you would any other regular method. It will be available on the object when you display it in your GSP.</p> <pre><code>def someMethod() { return "Hello." } </code></pre> <p>Then in your GSP.</p> <pre><code>${myObject.someMethod()} </code></pre> http://stackoverflow.com/questions/194331/adding-a-method-to-a-domain-class/199786#199786 1 Answer by John Flinchbaugh for Adding a method to a domain class John Flinchbaugh 2008-10-14T02:06:39Z 2008-10-14T02:06:39Z <p>If you want your method to appear to be more like a property, then make your method a getter method. A method called getFullName(), can be accessed like a property as ${person.fullName}. Note the lack of parentheses.</p>