1. <tfoot id='TBAff'></tfoot>
      <bdo id='TBAff'></bdo><ul id='TBAff'></ul>

    <i id='TBAff'><tr id='TBAff'><dt id='TBAff'><q id='TBAff'><span id='TBAff'><b id='TBAff'><form id='TBAff'><ins id='TBAff'></ins><ul id='TBAff'></ul><sub id='TBAff'></sub></form><legend id='TBAff'></legend><bdo id='TBAff'><pre id='TBAff'><center id='TBAff'></center></pre></bdo></b><th id='TBAff'></th></span></q></dt></tr></i><div id='TBAff'><tfoot id='TBAff'></tfoot><dl id='TBAff'><fieldset id='TBAff'></fieldset></dl></div>
    <legend id='TBAff'><style id='TBAff'><dir id='TBAff'><q id='TBAff'></q></dir></style></legend>

    1. <small id='TBAff'></small><noframes id='TBAff'>

    2. 如何在 Hibernate 中持久化字符串列表?

      时间:2023-07-26

              <tbody id='0whbV'></tbody>
            <tfoot id='0whbV'></tfoot>

            <small id='0whbV'></small><noframes id='0whbV'>

            • <legend id='0whbV'><style id='0whbV'><dir id='0whbV'><q id='0whbV'></q></dir></style></legend>
                <bdo id='0whbV'></bdo><ul id='0whbV'></ul>

                <i id='0whbV'><tr id='0whbV'><dt id='0whbV'><q id='0whbV'><span id='0whbV'><b id='0whbV'><form id='0whbV'><ins id='0whbV'></ins><ul id='0whbV'></ul><sub id='0whbV'></sub></form><legend id='0whbV'></legend><bdo id='0whbV'><pre id='0whbV'><center id='0whbV'></center></pre></bdo></b><th id='0whbV'></th></span></q></dt></tr></i><div id='0whbV'><tfoot id='0whbV'></tfoot><dl id='0whbV'><fieldset id='0whbV'></fieldset></dl></div>
                本文介绍了如何在 Hibernate 中持久化字符串列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我似乎在 Hibernate 中映射列表时遇到问题.在我们的项目中,有一个类 Card,其中包含一个类 Answer,其中 Answer 包含一个 List<String>.

                I seem to have problems with mapping a List in Hibernate. In our project there a class Card with contains a class Answer with Answer containing a List<String>.

                List<String> 是否可以被 Hibernate 使用注解映射?我的意思是,因为它没有 @Entity 注释?

                Is a List<String> mappable by Hibernate using annotations? I mean, since it does not have the @Entity annotation?

                问候

                推荐答案

                使用@ElementCollection:

                @ElementCollection
                @CollectionTable(name="Nicknames", joinColumns=@JoinColumn(name="user_id"))
                @Column(name="nickname")
                public List<String> getNicknames() { ... } 
                

                来源: 7.2.3.基本类型和可嵌入对象的集合

                这篇关于如何在 Hibernate 中持久化字符串列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:关于方法上的 Spring @Transactional 注释的一些说明 下一篇:JPA中@javax.persistence.Lob注解有什么意义?

                相关文章

                最新文章

                <legend id='ir3UA'><style id='ir3UA'><dir id='ir3UA'><q id='ir3UA'></q></dir></style></legend>

                    <tfoot id='ir3UA'></tfoot>

                    <small id='ir3UA'></small><noframes id='ir3UA'>

                      <bdo id='ir3UA'></bdo><ul id='ir3UA'></ul>
                    <i id='ir3UA'><tr id='ir3UA'><dt id='ir3UA'><q id='ir3UA'><span id='ir3UA'><b id='ir3UA'><form id='ir3UA'><ins id='ir3UA'></ins><ul id='ir3UA'></ul><sub id='ir3UA'></sub></form><legend id='ir3UA'></legend><bdo id='ir3UA'><pre id='ir3UA'><center id='ir3UA'></center></pre></bdo></b><th id='ir3UA'></th></span></q></dt></tr></i><div id='ir3UA'><tfoot id='ir3UA'></tfoot><dl id='ir3UA'><fieldset id='ir3UA'></fieldset></dl></div>