Java 使用hibernate示例时未插入行

Java 使用hibernate示例时未插入行,java,hibernate,postgresql,jdbc,Java,Hibernate,Postgresql,Jdbc,一、 尝试将Hibernate 3.5.3与Postgresql 8.4和Postgresql-8.4.701.jdbc4.jar一起使用 在事务完成后,并没有实际数据插入到表中 这是表格: CREATE TABLE doolloop2.dluser ( id bigint NOT NULL, firstname character varying(255), lastname character varying(255), email character varying(

一、 尝试将Hibernate 3.5.3与Postgresql 8.4和Postgresql-8.4.701.jdbc4.jar一起使用 在事务完成后,并没有实际数据插入到表中

这是表格:

   CREATE TABLE doolloop2.dluser
(
  id bigint NOT NULL,
  firstname character varying(255),
  lastname character varying(255),
  email character varying(255),
  CONSTRAINT users_pkey PRIMARY KEY (id)
)
WITH (
  OIDS=FALSE
);
ALTER TABLE doolloop2.dluser OWNER TO doolloop2;
我试图将下面的类映射到此表中

public class DlUser {
    private long Id;
    private String firstname;
    private String lastname;
    private String email;
    public DlUser()
    {

    }
    public void setId(long id) {
        this.Id = id;
    }
    public long getId() {
        return this.Id;
    }
    public void setEmail(String email) {
        this.email = email;
    }
    public void setFirstName(String name) {
        this.firstname = name;
    }
    public void setLastName(String name) {
        this.lastname = name;
    }
    public String getEmail() {
        return this.email;
    }
    public String getFirstName() {
        return this.firstname;
    }
    public String getLastName() {
        return this.lastname;
    }
}
然后我的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">
org.postgresql.Driver</property>
      <property name="hibernate.connection.url">
        jdbc:postgresql://127.0.0.1:5432/doolloop2</property>
      <property name="hibernate.connection.username">doolloop2</property>
      <property name="hibernate.connection.password">doolloop</property>
      <property name="hibernate.connection.pool_size">10</property>
      <property name="show_sql">true</property>
      <property name="dialect">org.hibernate.dialect.PostgreSQLDialect</property>
      <property name="hibernate.hbm2ddl.auto">update</property>
      <!-- Mapping files -->
      <mapping resource="DlUser.hbm.xml"/>
</session-factory>
</hibernate-configuration>
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC 
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
  <class name="com.doolloop.DlDataServices.Session.DlUser" table="DlUser">
  <id name="Id" column="id" >
        <generator class="assigned"></generator>
 </id>
  <property name="firstName">
     <column name="firstname" />
  </property>
  <property name="lastName">
    <column name="lastname"/>
  </property>
  <property name="email">
    <column name="email"/>
  </property>
 </class>
</hibernate-mapping>
public static void main(String[] args) {
    Session session = null;
    try{
          // This step will read hibernate.cfg.xml and prepare hibernate for use
          SessionFactory sessionFactory = new 
    Configuration().configure().buildSessionFactory();
           session =sessionFactory.openSession();
            //Create new instance of Contact and set values in it by reading them from form object
             System.out.println("Inserting Record");
            DlUser user = new DlUser();
            user.setFirstName("Test");
            user.setLastName("Test");
            user.setEmail("Test@yahoo.com");
            session.save(user);
            System.out.println("Done");
          // Actual contact insertion will happen at this step
          session.flush();
          session.close();
       }
       catch(HibernateException ex)
       {
           System.out.println(ex.getMessage());
       }              
}
控制台输出如下所示:

Sep 25, 2010 2:45:09 AM org.hibernate.cfg.Environment <clinit>
INFO: Hibernate 3.5.3-Final
Sep 25, 2010 2:45:09 AM org.hibernate.cfg.Environment <clinit>
INFO: hibernate.properties not found
Sep 25, 2010 2:45:09 AM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: Bytecode provider name : javassist
Sep 25, 2010 2:45:09 AM org.hibernate.cfg.Environment <clinit>
INFO: using JDK 1.4 java.sql.Timestamp handling
Sep 25, 2010 2:45:09 AM org.hibernate.cfg.Configuration configure
INFO: configuring from resource: /hibernate.cfg.xml
Sep 25, 2010 2:45:09 AM org.hibernate.cfg.Configuration getConfigurationInputStream
INFO: Configuration resource: /hibernate.cfg.xml
Sep 25, 2010 2:45:09 AM org.hibernate.cfg.Configuration addResource
INFO: Reading mappings from resource : DlUser.hbm.xml
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
INFO: Mapping class: com.doolloop.DlDataServices.Session.DlUser -> DlUser
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.Configuration doConfigure
INFO: Configured SessionFactory: null
Sep 25, 2010 2:45:10 AM org.hibernate.connection.DriverManagerConnectionProvider configure
INFO: Using Hibernate built-in connection pool (not for production use!)
Sep 25, 2010 2:45:10 AM org.hibernate.connection.DriverManagerConnectionProvider configure
INFO: Hibernate connection pool size: 10
Sep 25, 2010 2:45:10 AM org.hibernate.connection.DriverManagerConnectionProvider configure
INFO: autocommit mode: false
Sep 25, 2010 2:45:10 AM org.hibernate.connection.DriverManagerConnectionProvider configure
INFO: using driver: org.postgresql.Driver at URL: jdbc:postgresql://127.0.0.1:5432/doolloop2
Sep 25, 2010 2:45:10 AM org.hibernate.connection.DriverManagerConnectionProvider configure
INFO: connection properties: {user=doolloop2, password=****}
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: RDBMS: PostgreSQL, version: 8.4.4
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: JDBC driver: PostgreSQL Native Driver, version: PostgreSQL 8.4 JDBC4 (build 701)
Sep 25, 2010 2:45:10 AM org.hibernate.dialect.Dialect <init>
INFO: Using dialect: org.hibernate.dialect.PostgreSQLDialect
Sep 25, 2010 2:45:10 AM org.hibernate.engine.jdbc.JdbcSupportLoader useContextualLobCreation
INFO: Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException
Sep 25, 2010 2:45:10 AM org.hibernate.transaction.TransactionFactoryFactory buildTransactionFactory
INFO: Using default transaction strategy (direct JDBC transactions)
Sep 25, 2010 2:45:10 AM org.hibernate.transaction.TransactionManagerLookupFactory getTransactionManagerLookup
INFO: No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Automatic flush during beforeCompletion(): disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Automatic session close at end of transaction: disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: JDBC batch size: 15
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: JDBC batch updates for versioned data: disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Scrollable result sets: enabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: JDBC3 getGeneratedKeys(): enabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Connection release mode: auto
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Default batch fetch size: 1
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Generate SQL with comments: disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Order SQL updates by primary key: disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Order SQL inserts for batching: disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory createQueryTranslatorFactory
INFO: Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
Sep 25, 2010 2:45:10 AM org.hibernate.hql.ast.ASTQueryTranslatorFactory <init>
INFO: Using ASTQueryTranslatorFactory
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Query language substitutions: {}
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: JPA-QL strict compliance: disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Second-level cache: enabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Query cache: disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory createRegionFactory
INFO: Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Optimize cache for minimal puts: disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Structured second-level cache entries: disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Echoing all SQL to stdout
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Statistics: disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Deleted entity synthetic identifier rollback: disabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Default entity-mode: pojo
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Named query checking : enabled
Sep 25, 2010 2:45:10 AM org.hibernate.cfg.SettingsFactory buildSettings
INFO: Check Nullability in Core (should be disabled when Bean Validation is on): enabled
Sep 25, 2010 2:45:10 AM org.hibernate.impl.SessionFactoryImpl <init>
INFO: building session factory
Sep 25, 2010 2:45:10 AM org.hibernate.impl.SessionFactoryObjectFactory addInstance
INFO: Not binding factory to JNDI, no JNDI name configured
Sep 25, 2010 2:45:10 AM org.hibernate.tool.hbm2ddl.SchemaUpdate execute
INFO: Running hbm2ddl schema update
Sep 25, 2010 2:45:10 AM org.hibernate.tool.hbm2ddl.SchemaUpdate execute
INFO: fetching database metadata
Sep 25, 2010 2:45:10 AM org.hibernate.tool.hbm2ddl.SchemaUpdate execute
INFO: updating schema
Sep 25, 2010 2:45:10 AM org.hibernate.tool.hbm2ddl.TableMetadata <init>
INFO: table found: doolloop2.dluser
Sep 25, 2010 2:45:10 AM org.hibernate.tool.hbm2ddl.TableMetadata <init>
INFO: columns: [id, email, lastname, firstname]
Sep 25, 2010 2:45:10 AM org.hibernate.tool.hbm2ddl.TableMetadata <init>
INFO: foreign keys: []
Sep 25, 2010 2:45:10 AM org.hibernate.tool.hbm2ddl.TableMetadata <init>
INFO: indexes: [users_pkey]
Sep 25, 2010 2:45:10 AM org.hibernate.tool.hbm2ddl.SchemaUpdate execute
INFO: schema update complete
Inserting Record
Done
Hibernate: insert into DlUser (firstname, lastname, email, id) values (?, ?, ?, ?)
2010年9月25日凌晨2:45:09 org.hibernate.cfg.Environment
信息:Hibernate 3.5.3-Final
2010年9月25日凌晨2:45:09 org.hibernate.cfg.Environment
信息:找不到hibernate.properties
2010年9月25日凌晨2:45:09 org.hibernate.cfg.Environment buildBytecodeProvider
信息:字节码提供程序名称:javassist
2010年9月25日凌晨2:45:09 org.hibernate.cfg.Environment
信息:使用JDK1.4java.sql.Timestamp处理
2010年9月25日凌晨2:45:09 org.hibernate.cfg.Configuration
信息:从资源配置:/hibernate.cfg.xml
2010年9月25日凌晨2:45:09 org.hibernate.cfg.Configuration getConfigurationInputStream
信息:配置资源:/hibernate.cfg.xml
2010年9月25日凌晨2:45:09 org.hibernate.cfg.Configuration addResource
信息:正在从以下资源读取映射:DlUser.hbm.xml
2010年9月25日凌晨2:45:10 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息:映射类:com.dooloop.DlDataServices.Session.DlUser->DlUser
2010年9月25日凌晨2:45:10 org.hibernate.cfg.Configuration doConfigure
信息:配置的会话工厂:空
2010年9月25日凌晨2:45:10 org.hibernate.connection.driverManager连接提供程序配置
信息:使用Hibernate内置连接池(不用于生产!)
2010年9月25日凌晨2:45:10 org.hibernate.connection.driverManager连接提供程序配置
信息:休眠连接池大小:10
2010年9月25日凌晨2:45:10 org.hibernate.connection.driverManager连接提供程序配置
信息:自动提交模式:错误
2010年9月25日凌晨2:45:10 org.hibernate.connection.driverManager连接提供程序配置
信息:在URL:jdbc:p处使用driver:org.postgresql.driverostgresql://127.0.0.1:5432/doolloop2
2010年9月25日凌晨2:45:10 org.hibernate.connection.driverManager连接提供程序配置
信息:连接属性:{user=dooloop2,密码=**}
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:RDBMS:PostgreSQL,版本:8.4.4
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:JDBC驱动程序:PostgreSQL本机驱动程序,版本:PostgreSQL 8.4 JDBC4(构建701)
2010年9月25日凌晨2:45:10 org.hibernate.dialogue.dialogue
信息:使用方言:org.hibernate.dialogue.PostgreSqlDialogue
2010年9月25日凌晨2:45:10 org.hibernate.engine.jdbc.jdbc支持加载程序UseContexturalAllobCreation
信息:当createClob()方法抛出错误时禁用上下文LOB创建:java.lang.reflect.InvocationTargetException
2010年9月25日凌晨2:45:10 org.hibernate.transaction.TransactionFactoryFactory构建TransactionFactory
信息:使用默认事务策略(直接JDBC事务)
2010年9月25日凌晨2:45:10 org.hibernate.transaction.TransactionManagerLookupFactory getTransactionManagerLookup
信息:未配置TransactionManagerLookup(在JTA环境中,不建议使用读写或事务二级缓存)
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:在beforeCompletion()期间自动刷新:禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:事务结束时自动关闭会话:禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:JDBC批量大小:15
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:版本化数据的JDBC批更新:已禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:可滚动结果集:已启用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:JDBC3 getGeneratedKeys():已启用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:连接释放模式:自动
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:默认批量提取大小:1
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:生成带有注释的SQL:已禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:按主键排序SQL更新:已禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:批处理的订单SQL插入:已禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.SettingsFactory createQueryTranslatorFactory
信息:查询转换器:org.hibernate.hql.ast.ASTQueryTranslatorFactory
2010年9月25日凌晨2:45:10 org.hibernate.hql.ast.ASTQueryTranslatorFactory
信息:使用ASTQueryTranslatorFactory
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:查询语言替换:{}
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:JPA-QL严格合规性:禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:二级缓存:已启用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:查询缓存:已禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.SettingsFactory createRegionFactory
信息:缓存区域工厂:org.hibernate.Cache.impl.nocachGregionFactory
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:为最小放入优化缓存:已禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:结构化二级缓存项:已禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:将所有SQL回显到标准输出
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:统计信息:已禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.settings工厂构建设置
信息:已删除实体合成标识符回滚:已禁用
2010年9月25日凌晨2:45:10 org.hibernate.cfg.SettingsFactoryBuildSett
Session sess = factory.openSession();
Transaction tx;
try {
    tx = sess.beginTransaction();
    //do some work
    ...
    tx.commit();
}
catch (Exception e) {
    if (tx!=null) tx.rollback();
    throw e;
}
finally {
    sess.close();
}