Hibernate、设置键、CompositeUserType 和 SQL 过程

发布于 2024-09-04 19:26:32 字数 2635 浏览 0 评论 0原文

我在使用 Hibernate 和自定义 CompositeUserType 键将非空 Set 返回到对象时遇到一些问题。

我有一组表和视图(此处简化):

create table lang (lang_id,lang_cd);  
create table article (art_id,...);  
create table article_lang (art_id, lang_id,title,...);  
create view article_lang_vw (select * from article join article_lang on art_id);  
create table authors(user_id,...);  
create table article_authors(art_id,lang_id,user_id);  

和数据库函数:

create or replace procedure addarticle(title,art_id,lang_id) ...
create or replace procedure updatearticle(title,art_id,lang_id)..
create or replace procedure delarticle(art_id,lang_id)..
create or replace procedure addarticleauthor(user_id,art_id,lang_id)...
create or replace procedure delarticleauthor(user_id,art_id,lang_id)...

因此,为了使用这些函数完成此映射,我必须实现 CompositeUserType 所以现在我有这样的 Java 类:

class ProcedureGenerator implements PostInsertIdentityGenerator ...
class Language { int lang_id }  
class ArticleLangPKType implements CompositeUserType { //implemented methods }
class ArticleLangPK { int art_id; Language l; } 
class Article { ArticleLangPK id; String title; Set<Author> authors; }  
class Author { int user_id; String name; }

我想要作者列表或集合。但无法弄清楚如何在 *.hbm.xml 文件中映射这部分。它目前看起来像这样:

<class name="Author" mutable="false">
    <id name="user_id"/>
    <property name="name"/>
</class>
<class name="Article">
    <id name="id" type="ArticleLangPKType">
        <column name="art_id"/>
        <column name="lang_id"/>
        <generator class="ProcedureGenerator"/>
    </id>
    <property name="title"/>
    <set name="authors" table="article_authors">
        <key> <!--  <key type="ArticleLangPKType"> -->
            <column name="art_id"/>
            <column name="lang_id"/>
        </key>
        <many-to-many class="Author" table="article_authors" unique="true"/>
<!-- addauthor, delauthor sql here some how -->
    </set>
    <sql-insert callable="true">{call addarticle(?,?,?)}</sql-insert>
    <sql-update callable="true">{call updatearticle(?,?,?)}</sql-update>
    <sql-delete callable="true">{call adddelete(?,?)}</sql-delete>
</class>

但是当我在一篇我知道有作者的文章上运行这个 session.load(Article.class, pk) 时,我得到的 Set 大小为零。否则我使用 Hibernate 插入、更新、删除没有问题,但现在我被难住了。在我看来,这表明我的 ArticleLangPKType 有问题。

有什么想法可以完成这个吗?为什么我的 Set 大小始终为 0?如何使用所提供的文章集和 SQL 过程来保存作者? Hibernate 适合我吗?我需要休息一下才能看清楚吗?

提前致谢!

I am having some trouble with returning a non-empty Set into an object using Hibernate and a custom CompositeUserType key.

I have a set of tables and views (simplified here):

create table lang (lang_id,lang_cd);  
create table article (art_id,...);  
create table article_lang (art_id, lang_id,title,...);  
create view article_lang_vw (select * from article join article_lang on art_id);  
create table authors(user_id,...);  
create table article_authors(art_id,lang_id,user_id);  

And database functions:

create or replace procedure addarticle(title,art_id,lang_id) ...
create or replace procedure updatearticle(title,art_id,lang_id)..
create or replace procedure delarticle(art_id,lang_id)..
create or replace procedure addarticleauthor(user_id,art_id,lang_id)...
create or replace procedure delarticleauthor(user_id,art_id,lang_id)...

So to accomplish this mapping using those functions I had to implement CompositeUserType so now I have Java classes like this:

class ProcedureGenerator implements PostInsertIdentityGenerator ...
class Language { int lang_id }  
class ArticleLangPKType implements CompositeUserType { //implemented methods }
class ArticleLangPK { int art_id; Language l; } 
class Article { ArticleLangPK id; String title; Set<Author> authors; }  
class Author { int user_id; String name; }

I want to have a List or Set of Authors. But cannot figure out how to map this part in the *.hbm.xml files. It currently looks something like this:

<class name="Author" mutable="false">
    <id name="user_id"/>
    <property name="name"/>
</class>
<class name="Article">
    <id name="id" type="ArticleLangPKType">
        <column name="art_id"/>
        <column name="lang_id"/>
        <generator class="ProcedureGenerator"/>
    </id>
    <property name="title"/>
    <set name="authors" table="article_authors">
        <key> <!--  <key type="ArticleLangPKType"> -->
            <column name="art_id"/>
            <column name="lang_id"/>
        </key>
        <many-to-many class="Author" table="article_authors" unique="true"/>
<!-- addauthor, delauthor sql here some how -->
    </set>
    <sql-insert callable="true">{call addarticle(?,?,?)}</sql-insert>
    <sql-update callable="true">{call updatearticle(?,?,?)}</sql-update>
    <sql-delete callable="true">{call adddelete(?,?)}</sql-delete>
</class>

But when I run this session.load(Article.class, pk) on an article I know has authors I get a Set size of zero. Otherwise I have no problems inserting, updating, deleting using Hibernate, but now I am stumped. This seems to me to indicate a problem with my ArticleLangPKType.

Any ideas what to do to complete this? Why is my Set always size 0? How would I save the author using the Article's Set and the SQL procedures as provided? Is Hibernate right for me? Do I need a break to see this clearly?

Thanks in advance!

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

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

发布评论

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

评论(1

久夏青 2024-09-11 19:26:32

没关系,我确实需要长时间休息。我的 ArticleLangPK 没有正确覆盖 hashCode 和 Equals。现在只是想弄清楚如何正确调用其他两个存储过程。

Nevermind I did need a long break. My ArticleLangPK did not override hashCode and Equals correctly. Now just to figure out how to call those other two stored procedures correctly.

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