将 Hibernate 类与 @Bindable 结合用于 SwingBuilder 而不使用 Griffon?
我已经在 Groovy/Gradle 中为我的应用程序实现了后端,现在正在尝试实现 GUI。
我使用 Hibernate 进行数据存储(使用 HSQLDB) http://groovy.codehaus.org/Using+Hibernate+with+Groovy (使用 Jasypt 进行加密)并且它运行得很好。
我想知道是否有任何使用 @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) 请求狮鹫 (ii) 完全走错了路?
谢谢你! 米沙
I have implemented a back-end for my application in Groovy/Gradle, and am now trying to implement a GUI.
I am using Hibernate for my data storage (with HSQLDB) per
http://groovy.codehaus.org/Using+Hibernate+with+Groovy
(with Jasypt for encryption) and it is working quite well.
I was wondering if there are any good tips for using @Bindable with, e.g., an @Entity class such as
@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(', ')}" }
}
or if I am:
(i) asking for Griffon
(ii) completely on the wrong track?
Thank you!
Misha
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,看来我可以在 Hibernate @Entity 中使用 @Bindable 了!
米沙
Alright, looks like I can use @Bindable in a Hibernate @Entity!!
Misha