将 Hibernate 类与 @Bindable 结合用于 SwingBuilder 而不使用 Griffon?

发布于 2024-09-05 23:17:52 字数 663 浏览 7 评论 0原文

我已经在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬花如无物 2024-09-12 23:17:52

好吧,看来我可以在 Hibernate @Entity 中使用 @Bindable 了!

米沙

Alright, looks like I can use @Bindable in a Hibernate @Entity!!

Misha

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文