从Hibernate Annotations切换到hbm.xml文件时出错

时间:2016-06-06 15:43:38

标签: java sql xml oracle hibernate

因此,在处理我的项目时,我最初在我的java类中使用了Hibernate Annotations @ Entity,@ Table,@ Column,@ SequenceGenerator和@GeneratedValue,并且能够成功地将项目添加到我的Oracle数据库中。

现在我正在尝试复制相同的东西,但使用* .hbm.xml文件并遇到问题。

以下是带有注释的原始Java类代码:

//@Entity
//@Table (name="client")
@SequenceGenerator(name="seq_client",sequenceName="BIMB2013WMMEE.seq_client",
allocationSize=1, initialValue=1)
public class Client {

    //Fields
    //@Id
    //@GeneratedValue(strategy=GenerationType.SEQUENCE)
    @GeneratedValue(strategy=GenerationType.SEQUENCE, generator="seq_client")
    //@Column(name="CLIENT_ID")
    private int id;
    //@Column(name="CLIENT_NAME")
    private String clientName;
    //@Column(name="CLIENT_CODE")
    private String clientCode;

这是相应的hbm.xml文件,它位于我项目的src目录中。

<hibernate-configuration>

    <session-factory>

        <!-- JDBC Database connection settings -->
        <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
        <property name="connection.url">jdbc:oracle:thin:@endeavour.us.manh.com:1523/pso11r2f</property>
        <property name="connection.username">BIMB2013WMMEE</property>
        <property name="connection.password">BIMB2013WMMEE</property>

        <!-- JDBC connection pool settings ... using built-in test pool -->
        <property name="connection.pool_size">1</property>

        <!-- Select our SQL dialect -->
        <property name="dialect">org.hibernate.dialect.Oracle10gDialect</property>

        <!-- Echo the SQL to stdout -->
        <property name="show_sql">true</property>


        <!-- Set the current session context -->
        <property name="current_session_context_class">thread</property>

    </session-factory>

</hibernate-configuration> 

最后这里是Eclipse错误代码:

Exception in thread "main" org.hibernate.MappingException: Unknown entity: com.luv2code.hibernate.demo.entity.Client

我没有对实际创建对象的类进行任何更改,并通过会话将其添加到数据库中......我需要吗?

感谢您的帮助!!

2 个答案:

答案 0 :(得分:0)

我想您可能忘记了映射标记,以列出项目中使用hibernate持久性的所有资源。

以下是一个例子:

<强> hibernate.cfg.xml中

<session-factory>

    <!-- Database connection settings -->
    <property name="connection.driver_class">org.h2.Driver</property>
    <property name="connection.url">jdbc:h2:file:db/personh2db;DB_CLOSE_DELAY=-1;MVCC=TRUE</property>
    <property name="connection.username">sa</property>
    <property name="connection.password"/>

    <!-- JDBC connection pool (use the built-in) -->
    <property name="connection.pool_size">1</property>

    <!-- SQL dialect -->
    <property name="dialect">org.hibernate.dialect.H2Dialect</property>

    <!-- Disable the second-level cache  -->
    <property name="cache.provider_class">org.hibernate.cache.internal.NoCacheProvider</property>

    <!-- Echo all executed SQL to stdout -->
    <property name="show_sql">true</property>

    <!-- Drop and re-create the database schema on startup -->
    <property name="hbm2ddl.auto">create</property>

    <mapping resource="com/example/model/Person.hbm.xml"/>
    <mapping resource="com/example/model/Properties.hbm.xml"/>

</session-factory>

答案 1 :(得分:0)

您显示的xml文件是hibernate配置文件,它不是hbm.xml文件。 您必须为您创建的每个持久实体创建“classname.hbm.xml”文件 - 在您的情况下,它是您的Client类。所以你必须制作Client.hbm.xml文件。之后,您必须将该资源添加到配置文件和Hibernate Utility文件中。您可能会觉得这很有帮助。 http://www.mkyong.com/hibernate/how-to-add-hibernate-xml-mapping-file-hbm-xml-programmatically/