Hibernate MySQL无法创建表

时间:2013-09-23 14:44:21

标签: java mysql hibernate

我正在学习冬眠,而我一开始就陷入困境。所以问题是我的应用程序无法自动创建表。这里是所有代码:

的hibernate.cfg.xml

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
    <session-factory>
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernatedb</property>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.connection.password">password</property>
        <property name="hibernate.connection.pool_size">1</property>
        <property name="hibernate.hbm2dll.auto">create</property>   
        <property name="hibernate.show_sql">true</property>
        <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
        <mapping class="azaro.test.hibernate.UserDetails" />    
    </session-factory>
</hibernate-configuration>

HibernateTest.java

package azaro.test.hibernate;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.hibernate.service.ServiceRegistry;
import org.hibernate.service.ServiceRegistryBuilder;

public class HibernateTest {

    public static void main(String[] args) {
        UserDetails user = new UserDetails();
        user.setUserId(1);
        user.setUserName("First User");

        Configuration configuration = new Configuration();
        configuration.configure();
        ServiceRegistry serviceRegistry = new ServiceRegistryBuilder().applySettings(configuration.getProperties()).buildServiceRegistry();        
        SessionFactory sessionFactory = configuration.buildSessionFactory(serviceRegistry);
        Session session = sessionFactory.openSession();
        session.beginTransaction();
        session.save(user);
        session.getTransaction().commit();
    }

}

UserDetails.java

package azaro.test.hibernate;

import javax.persistence.Entity;
import javax.persistence.Id;

@Entity
public class UserDetails {
    @Id
    private int userId;
    private String userName;

    public int getUserId() {
        return userId;
    }

    public void setUserId(int userId) {
        this.userId = userId;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

}

控制台输出:

Hibernate: insert into UserDetails (userName, userId) values (?, ?)
Sep 23, 2013 6:34:23 PM org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions
WARN: SQL Error: 1146, SQLState: 42S02
Sep 23, 2013 6:34:23 PM org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions
ERROR: Table 'hibernatedb.userdetails' doesn't exist
Exception in thread "main" org.hibernate.exception.SQLGrammarException: could not execute statement
    at org.hibernate.exception.internal.SQLExceptionTypeDelegate.convert(SQLExceptionTypeDelegate.java:82)
    at org.hibernate.exception.internal.StandardSQLExceptionConverter.convert(StandardSQLExceptionConverter.java:49)
    at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:125)
    at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:110)
    at org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.executeUpdate(ResultSetReturnImpl.java:136)
    at org.hibernate.engine.jdbc.batch.internal.NonBatchingBatch.addToBatch(NonBatchingBatch.java:58)
    at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:3067)
    at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:3509)
    at org.hibernate.action.internal.EntityInsertAction.execute(EntityInsertAction.java:88)
    at org.hibernate.engine.spi.ActionQueue.execute(ActionQueue.java:377)
    at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:369)
    at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:286)
    at org.hibernate.event.internal.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:339)
    at org.hibernate.event.internal.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:52)
    at org.hibernate.internal.SessionImpl.flush(SessionImpl.java:1234)
    at org.hibernate.internal.SessionImpl.managedFlush(SessionImpl.java:404)
    at org.hibernate.engine.transaction.internal.jdbc.JdbcTransaction.beforeTransactionCommit(JdbcTransaction.java:101)
    at org.hibernate.engine.transaction.spi.AbstractTransactionImpl.commit(AbstractTransactionImpl.java:175)
    at azaro.test.hibernate.HibernateTest.main(HibernateTest.java:23)
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'hibernatedb.userdetails' doesn't exist
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at com.mysql.jdbc.Util.handleNewInstance(Util.java:411)
    at com.mysql.jdbc.Util.getInstance(Util.java:386)
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1054)
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4190)
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4122)
    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2570)
    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2731)
    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2818)
    at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2157)
    at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2460)
    at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2377)
    at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2361)
    at org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.executeUpdate(ResultSetReturnImpl.java:133)
    ... 14 more

如果您需要更多信息,请随时提出。

6 个答案:

答案 0 :(得分:1)

检查使用

生成的ddl
SchemaExport(cfg).create(true, true);

使用此功能,您将了解ddl并可以更好地进行分析。此外,如果架构已更新。将hbm2ddl.auto设置为'create-drop'

答案 1 :(得分:1)

cfg.xml文件中有错误。

将hbm2 dll 更改为hbm2 ddl
"hibernate.hbm2dll.auto">create

然后生活将再次美丽。 我知道这是因为我犯了同样的错误,花了几个小时 搞清楚。

答案 2 :(得分:0)

添加配置文件(hibernate.cfg.xml)更新并使用@Column注释在数据库中创建列

答案 3 :(得分:0)

“ SQLGrammarException”异常表示在配置方言时语法错误。

Sep 23, 2013 6:34:23 PM org.hibernate.engine.jdbc.spi.SqlExceptionHelper logExceptions
ERROR: Table 'hibernatedb.userdetails' doesn't exist
Exception in thread "main" org.hibernate.exception.SQLGrammarException: could not execute statement
~~~~~~~~~~~~

Answer:

- The correct dialect entry is: [<property name="hibernate.dialect">]
  ~~~~~~~~~~
   <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> 
  ~~~~~~~~~

- The given is found from your XML file. [<property name="dialect">]
  ~~~~~~~~~
        <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
        <mapping class="azaro.test.hibernate.UserDetails" />    
    </session-factory>
    </hibernate-configuration>
  ~~~~~~~~~~~

Root Cause: The hibernate property should start with the 'hibernate.' prefix!

In this case, your code contains the property with the "dialect" prefix and this is wrong. Replace it with the "hibernate.dialect".


- Sarfaraz

答案 4 :(得分:-1)

请尝试使用org.hibernate.dialect.MySQL5InnoDBDialect代替org.hibernate.dialect.MySQLDialect

MySQL5Dialact指的是MyISAM存储类型,而MySQL5InnoDBDialect指的是InnoDB(更新)类型。

答案 5 :(得分:-2)

不要将用户启动为null并将hbm2ddl配置为create-drop,代码将按如下结果执行:

Hibernate:插入USER_DETAILS(Address,description,joinedDate,userName,userId)值(?,?,?,?,?) Hibernate:选择userdetail0_.userId为userId1_0_0_,userdetail0_.Address为Address2_0_0_,userdetail0_.description为descript3_0_0_,userdetail0_.joinedDate为joinedDa4_0_0_,userdetail0_.userName为userName5_0_0_,来自USER_DETAILS userdetail0_,其中userdetail0_.userId =?

用户名retreived是第一个用户