开发者

Adding business logic to a domain class using a getter style method name

开发者 https://www.devze.com 2023-01-01 19:36 出处:网络
I\'m attempting to add a method to a grails domain class, e.g. class Item { String name String getReversedName() {

I'm attempting to add a method to a grails domain class, e.g.

class Item {

  String name

  String getReversedName() {
    name.reverse()
  }

}

When I attempt开发者_如何学JAVA to load the application using grails console I get the following error:

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory':Invocation of init method failed; nested exception is org.hibernate.PropertyNotFoundException: Could not find a setter for property reversedName in class Item ... 18 more

It looks like Hibernate is interpreting getReversedName() as a getter for a property, however in this case it is a derived field and hence should not be persisted. Obviously in my actual code the business logic I'm exposing is more complex but it isn't relevant to this question. I want to be able to call item.reversedName in my code/gsps.

How can I provide property (getter) access to a method in a Grails domain class without Grails attempting to map it with Hibernate?


I believe you have two choices:

1) Use def

def getReversedName() {
  name.reverse()
}

2) Add a transients declaration to the top of your domain object:

 static transients = [ 'reversedName' ] 

[edit] (I'd go with #1) (I'd go with #2) ;-)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号