我已经在 Groovy/Gradle 中为我的应用程序实现了一个后端,现在我正在尝试实现一个 GUI。
我根据 http://groovy.codehaus.org/Using+Hibernate+with+Groovy (使用 Jasypt 进行加密)使用 Hibernate 进行数据存储(使用 HSQLDB),并且运行良好。
我想知道将@Bindable 与@Entity 类一起使用是否有任何好的技巧,例如
@Entity class Book {
@Id @GeneratedValue(strategy = GenerationType.AUTO)
public Long id
@OneToMany(cascade=CascadeType.ALL)
public Set<Author> authors
public String title
String toString() { "$title by ${authors.name.join(', ')}" }
}
或者如果我是:(i) 要求 Griffon (ii) 完全走错了路?
谢谢!米莎