运行程序的结果是:Exception in thread "main" org.hibernate.exception.SQLGrammarException: could not insert: [lee.News];
Caused by: java.sql.SQLException: Table 'hibernates.news_table' doesn't exist
奇怪的是数据没有插入成功,反而自动把表给删除了。
纠结了好长时间,请懂的朋友支援,谢谢!!mysql:
 create table news_table (
 news_id int primary key auto_increment,
 news_title varchar(20) not null,
 content varchar(50) not null );News.java : 
package lee;
public class News {
    private Integer id;
    private String title;
    private String content;
    
    public News() {}
    public News(Integer id, String title, String content) {
        this.setId(id);
        this.setTitle(title);
        this.setContent(content);
    }    public Integer getId() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    public String getContent() {
        return content;
    }
    public void setContent(String content) {
        this.content = content;
    }
}Test.java : 
package lee;import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;public class Test {
    public static void main(String[] args) throws Exception
    {
        //实例化Configuration
        Configuration conf = new Configuration().configure();
        //实例化SessionFactory
        SessionFactory sf = conf.buildSessionFactory();
        //实例化Session
        Session sess = sf.openSession();
        //开始事务
        Transaction tx = sess.beginTransaction();
        //创建消息实例
        News n = new News();
        //设置消息标题和消息内容
        n.setTitle("疯狂Java联盟成立了");
        n.setContent("疯狂Java联盟成立了,网址是www.crazyit.org");
        //保存消息
        sess.save(n);
        //提交事务
        tx.commit();
        //关闭Session
        sess.close();
    }
}News.hbm.xml : 
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="lee">
    <!-- 每个class元素对应一个持久化对象 -->
    <class name="News" table="news_table">
        <!-- id元素定义持久化类的标识属性 -->
        <id name="id" column="news_id" unsaved-value="null">
            <generator class="identity"/>
        </id>
        <!--  property元素定义常规属性 -->
        <property name="title" column="news_title" type="string"/>
        <property name="content" type="string"/>
    </class>
</hibernate-mapping>hibernate.cfg.xml : 
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory>
        <!-- 指定连接数据库所用的驱动 -->
        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
        <!-- 指定连接数据库的url,hibernate是连接的数据库名 -->
        <property name="connection.url">jdbc:mysql://localhost/hibernates</property>
        <!-- 指定连接数据库的用户名 -->
        <property name="connection.username">root</property>
        <!-- 指定连接数据库的密码 -->
        <property name="connection.password">901110</property>
        <!-- 使用C3P0连接池,指定连接池的相关配置信息 -->
        <property name="hibernate.c3p0.max_size">20</property>
        <property name="hibernate.c3p0.min_size">1</property>
        <property name="hibernate.c3p0.timeout">5000</property>
        <property name="hibernate.c3p0.max_statements">100</property>
        <property name="hibernate.c3p0.idle_test_period">3000</property>
        <property name="hibernate.c3p0.acquire_increment">2</property>
        <property name="hibernate.c3p0.validate">true</property>
        <!-- 指定数据库方言 -->
        <property name="dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>
        <!-- 根据需要自动创建数据库 -->
        <property name="hbm2ddl.auto">create</property>
        <!-- 罗列所有的映射文件-->
        <mapping resource="News.hbm.xml"/>
    </session-factory>
</hibernate-configuration>

解决方案 »

  1.   

    create应该是先删除再创建的,没看出什么问题
      

  2.   

    知道什么原因了,要把create改成update就OK了,哪位能帮我讲解一下吗?
      

  3.   

    不需要你写mysql语句,它会自动创建表,
    建议使用
    <property name="hbm2ddl.auto">update</property>
      

  4.   

    validate               加载hibernate时,验证创建数据库表结构
    create                  每次加载hibernate,重新创建数据库表结构,这就是导致数据库表数据丢失的原因。
    create-drop         加载hibernate时创建,退出是删除表结构
    update                加载hibernate自动更新数据库结构总结:1.请慎重使用此参数,没必要就不要随便用。2.如果发现数据库表丢失,请检查hibernate.hbm2ddl.auto的配置 
      

  5.   

    那就是创建表失败了,
    <property name="title" column="news_title" type="string"/>
    其中的type应该这么写成:type="java.lang.String"