如何在休眠中映射 String[]

发布于 2024-12-06 07:03:27 字数 331 浏览 0 评论 0原文

如何在 Hibernate 中映射以下类:

private class Book {
    private int id;
    private String title;
    private String[] chapterTitles;

    //Constructor, Getters and Setters
}

我已经在 Hibernate 中映射了集合和原始数组,但是如何使用 String[] 来实现它?我的休眠工具因“NullPointerException”而停止,因此我无法生成映射。我用谷歌搜索但找不到任何东西。

How would you map the following class in hibernate:

private class Book {
    private int id;
    private String title;
    private String[] chapterTitles;

    //Constructor, Getters and Setters
}

I have mapped Collections and primitive arrays in Hibernate, but how do I do it with a String[]? My hibernate tools stops with a 'NullPointerException' thereby I am unable to generate the mappings. And I have googled but couldn't find any.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

白云不回头 2024-12-13 07:03:27

我不知道如何使用注释来做到这一点,就我个人而言,我认为这不是一个好主意,您应该使用 List 但是您可以使用 xml 映射来做到这一点。

您应该使用

<array name="chapterTytles" table="Titles">
    <key column="title_ID" />
    <index column="tytle_index" />
    <element column="tytle_name" type="string" />
</array>

I have no clue how to do it with Annotations and personally, I don't think it's good idea and you should use List<String> however you can do it using xml mapping.

You should use <array>

<array name="chapterTytles" table="Titles">
    <key column="title_ID" />
    <index column="tytle_index" />
    <element column="tytle_name" type="string" />
</array>
万人眼中万个我 2024-12-13 07:03:27

您可以通过创建自定义值类型来完成此操作,尽管我个人更愿意更改您的设计并使用列表。

You can do it by creating a custom value type, although I would personally prefer to change your design and use a List instead.

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