0

私はflex、blazeds、hibernate jpa、tomcat、mysqlで作業しています。これは、プロジェクトを開始するときに直面する問題です。

05.06.2012 22:33:29.459  INFO     org.hibernate.cfg.annotations.Version     - Hibernate Annotations 3.4.0.GA
05.06.2012 22:33:29.479  INFO     org.hibernate.cfg.Environment             - Hibernate 3.3.2.GA
05.06.2012 22:33:29.482  INFO     org.hibernate.cfg.Environment             - hibernate.properties not found
05.06.2012 22:33:29.487  INFO     org.hibernate.cfg.Environment             - Bytecode provider name : javassist
05.06.2012 22:33:29.493  INFO     org.hibernate.cfg.Environment             - using JDK 1.4 java.sql.Timestamp handling
05.06.2012 22:33:29.645  INFO     org.hibernate.annotations.common.Version  - Hibernate Commons Annotations 3.1.0.GA
05.06.2012 22:33:29.650  INFO     org.hibernate.ejb.Version                 - Hibernate EntityManager 3.4.0.GA

そして、これはsrc/META-INFの下にある私のpersistence.xmlファイルです。

<persistence version="1.0"
xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">

<persistence-unit name="consultant_db">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>


    <class>com.adobe.demo.domain.Permission</class>
    <class>com.adobe.demo.domain.Role</class>
    <class>com.adobe.demo.domain.User</class>

    <properties>
        <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" />
        <property name="hibernate.connection.url" value="jdbc:mysql://localhost/consultant_db" />
        <property name="hibernate.connection.username" value="root" />
        <property name="hibernate.connection.password" value="" />
        <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5Dialect" />

        <property name="hibernate.connection.pool_size" value="6" />
        <property name="hibernate.connection.autoReconnect" value="true" />
        <property name="hibernate.generate_statistics" value="false" />
        <property name="hibernate.show_sql" value="true" />
        <property name="hibernate.use_sql_comments" value="false" />
        <property name="hibernate.hbm2ddl.auto" value="update" />
    </properties>


</persistence-unit>

しかし、その行を削除すると <class>com.adobe.demo.domain.User</class> 、他の2つのテーブルが作成されます。私は何をすべきか?

4

1 に答える 1

0

ここに同様の質問があります。OP は「ユーザー」テーブルを作成しようとしましたが、失敗しました。OP は、Userクラスに で注釈を付けることで問題を解決できました@Table(name = "\"user\"")

また、このような問題をトラブルシューティングする方法についてもいくつかのヒントを提供しました。

于 2012-06-09T18:01:24.443 に答える