vote up 2 vote down star

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).

How do I add the method and how can I then call it from the .gsps?

flag

75% accept rate

2 Answers

vote up 7 vote down check

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.

def someMethod() {
return "Hello."
}

Then in your GSP.

${myObject.someMethod()}
link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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