Adding a method to a domain class - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T09:25:21Zhttp://stackoverflow.com/feeds/question/194331http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/194331/adding-a-method-to-a-domain-class2Adding a method to a domain classqollin2008-10-11T17:14:26Z2008-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#1943487Answer by Hates_ for Adding a method to a domain classHates_2008-10-11T17:29:02Z2008-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#1997861Answer by John Flinchbaugh for Adding a method to a domain classJohn Flinchbaugh2008-10-14T02:06:39Z2008-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>