Hibernate java web应用程序

时间:2013-04-20 18:44:50

标签: java hibernate jsp web-applications

我正在开发一个使用hibernate框架的java JSP web应用程序。

我是JSP / hibernate的初学者,我似乎无法让hibernate工作。 我已经按照本教程进行了操作:https://netbeans.org/kb/docs/web/hibernate-webapp.html 这一切都奏效了。我使用xampp和phpmyadmin,我可以通过hibernate.cfg.xml文件执行HQL查询。

然后我正在尝试使用我用于Web应用程序的数据库。遵循所有步骤并通过所有向导。但我无法执行HQL查询。

给出以下错误:

org.hibernate.MappingException: An association from the table campingsperfestival refers to an unmapped class: festivalOverview.Campings
    at org.hibernate.cfg.Configuration.secondPassCompileForeignKeys(Configuration.java:1252)
    at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1170)
    at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:324)
    at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1286)
    at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:859)

我遵循了Hibernate Mapping Files和POJO from Database向导,它为数据库中的所有表生成了一个.java和.hbm.xml文件,除了一个表:'campingsperfestival'表。我已经完成了几次向导并重新启动它,但它仍然没有生成'campingsperfestival'表的.java和.hbm.xml文件。

'campingsperfestival'表是一个包含2个id的表,它们都有一个外键。有节日和露营都有ID,'campingsperfestival'在一张桌子上匹配那2个id。

Campings.hbm.xml:

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!-- Generated 20-apr-2013 12:04:37 by Hibernate Tools 3.2.1.GA -->
<hibernate-mapping>
    <class name="festivalOverview.Campings" table="campings" catalog="groep11_festivals">
        <id name="campId" type="java.lang.Integer">
            <column name="camp_id" />
            <generator class="identity" />
        </id>
        <property name="campAdres" type="string">
            <column name="camp_adres" not-null="true" />
        </property>
        <property name="campCap" type="int">
            <column name="camp_cap" not-null="true" />
        </property>
        <set name="festivalses" inverse="true" table="campingsperfestival">
            <key>
                <column name="camp_id" not-null="true" />
            </key>
            <many-to-many entity-name="festivalOverview.Festivals">
                <column name="fest_id" not-null="true" />
            </many-to-many>
        </set>
        <set name="facpercamps" inverse="true">
            <key>
                <column name="camp_id" not-null="true" />
            </key>
            <one-to-many class="festivalOverview.Facpercamp" />
        </set>
    </class>
</hibernate-mapping>

Festivals.hbm.xml:

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!-- Generated 20-apr-2013 12:04:37 by Hibernate Tools 3.2.1.GA -->
<hibernate-mapping>
    <class name="festivalOverview.Festivals" table="festivals" catalog="groep11_festivals">
        <id name="festId" type="java.lang.Integer">
            <column name="fest_id" />
            <generator class="identity" />
        </id>
        <property name="festNaam" type="string">
            <column name="fest_naam" length="100" not-null="true" />
        </property>
        <property name="festLocatie" type="string">
            <column name="fest_locatie" length="200" not-null="true" />
        </property>
        <property name="festDatum" type="date">
            <column name="fest_datum" length="10" not-null="true" />
        </property>
        <property name="festDuur" type="byte">
            <column name="fest_duur" not-null="true" />
        </property>
        <set name="ticketses" inverse="true">
            <key>
                <column name="fest_id" not-null="true" />
            </key>
            <one-to-many class="festivalOverview.Tickets" />
        </set>
        <set name="bandsperfestivals" inverse="true">
            <key>
                <column name="fest_id" not-null="true" />
            </key>
            <one-to-many class="festivalOverview.Bandsperfestival" />
        </set>
        <set name="campingses" inverse="false" table="campingsperfestival">
            <key>
                <column name="fest_id" not-null="true" />
            </key>
            <many-to-many entity-name="festivalOverview.Campings">
                <column name="camp_id" not-null="true" />
            </many-to-many>
        </set>
        <set name="tickettypesperfestivals" inverse="true">
            <key>
                <column name="fest_id" not-null="true" />
            </key>
            <one-to-many class="festivalOverview.Tickettypesperfestival" />
        </set>
    </class>
</hibernate-mapping>

我只是一个熟悉hibernate的初学者,真的不知道如何解决这个问题。非常感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

我认为campingsperfestival是Campings和Festival两个班级之间的连接表?您是否定义了这些类及其映射?

你所遇到的错误是它无法创建campingsperfestival,因为它指的是Campings,它没有被定义为hibernate类。因此,请确保定义了Campings并确保映射正确。

如果您仍然不清楚,如果您展示了野营和节日的java / mappings,我们可以提供更多帮助。

顺便说一句,如果这是一个你正在着手的新项目,我真的建议使用基于注释的hibernate类。您可能会发现自己创建hibernate实体类而不是使用netbeasns更有效的学习体验 - 但这取决于个人偏好。