Hibernate错误结果集

Hibernate环境搭建

1.导入hibernate类库

这里我用的版本是hibernate-3.2.0.ga

路径为:

 hibernate-3.2.0.ga/hibernate-3.2下的hibernate3.jar

2.建立如下文件

2.1 在项目目录下建立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="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>

       <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>

       <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernate_first</property>

       <property name="hibernate.connection.username">root</property>

       <property name="hibernate.connection.password">mysql</property>

       <!-- 配置数据源 -->

       <property name="hibernate.c3p0.max_size">2</property>

       <property name="hibernate.c3p0.min_size">2</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">false</property>

       <property name="hibernate.connection.release_mode">auto</property>

       <property name="c3p0.testConnectionOnCheckout">true</property>

       <!-- 是否打印SQL语句 -->

       <property name="hibernate.show_sql">true</property>

       <!-- 映射文件 -->

       <mapping resource="com/asjy/hibernate/vo/person.hbm.xml"/>

    </session-factory>

</hibernate-configuration>

2.2建立vo

Person.java

public class Person {

  private int id;

  private String username;

  private String password;

  private int age;

  private boolean sex;

  private String phone;

  private String address;

  public String getAddress() {

    return address;

  }

  public void setAddress(String address) {

    this.address = address;

  }

  public int getAge() {

    return age;

  }

  public void setAge(int age) {

    this.age = age;

  }

  public int getId() {

    return id;

  }

  public void setId(int id) {

    this.id = id;

  }

  public String getPassword() {

    return password;

  }

  public void setPassword(String password) {

    this.password = password;

  }

  public String getPhone() {

    return phone;

  }

  public void setPhone(String phone) {

    this.phone = phone;

  }

  public boolean isSex() {

    return sex;

  }

  public void setSex(boolean sex) {

    this.sex = sex;

  }

  public String getUsername() {

    return username;

  }

  public void setUsername(String username) {

    this.username = username;

  }

}

 

2.3 建立对应的映射文件

Person.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>

       <class name="com.asjy.hibernate.vo.Person" table="person" >

           <id name="id">

<!-- 主键生成方式 identity -->

            <generator class="identity"></generator>

           </id>

           <property name="username"></property>

           <property name="password"></property>

           <property name="age"></property>

           <property name="sex"></property>

           <property name="phone"></property>

           <property name="address"></property>

       </class>

    </hibernate-mapping>

 

建立完毕后

 

2.4建立测试类

import junit.framework.TestCase;

import org.hibernate.Session;

import org.hibernate.Transaction;

import org.hibernate.cfg.Configuration;

 

import com.asjy.hibernate.vo.Person;

 

public class TestVo extends TestCase{

    public void  testInsert()

    {

    Session session = null;

    try{

      session = new Configuration().configure().buildSessionFactory().openSession();

      Person person = new Person();

      person.setUsername("root");

      person.setPassword("8989");

      person.setAge(44);

      person.setSex(false);

      person.setPhone("138-32212");

      person.setAddress("guangzhou");

      session.save(person);

      Transaction st = session.beginTransaction();

     

      session.getTransaction().commit();

    }catch(Exception e)

    {

     

      e.printStackTrace();

    }

   

   

    }

}

2.5执行测试类

错误结果集

错误1:没找到dom4j

Exception in thread "main" java.lang.NoClassDefFoundError: org/dom4j/DocumentException

    at com.asjy.hibernate.test.TestVo.main(TestVo.java:14)

Caused by: java.lang.ClassNotFoundException: org.dom4j.DocumentException

    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)

    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)

    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)

    ... 1 more

 

错误2:为找到common-logging

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory

    at org.hibernate.cfg.Configuration.<clinit>(Configuration.java:120)

    at com.asjy.hibernate.test.TestVo.main(TestVo.java:14)

Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory

    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)

    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)

    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)

    ... 2 more

 

错误3:未找到commons-collections

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/collections/SequencedHashMap

    at org.hibernate.mapping.Table.<init>(Table.java:33)

    at org.hibernate.cfg.Mappings.addTable(Mappings.java:165)

    at org.hibernate.cfg.HbmBinder.bindRootPersistentClassCommonValues(HbmBinder.java:290)

    at org.hibernate.cfg.HbmBinder.bindRootClass(HbmBinder.java:273)

    at org.hibernate.cfg.HbmBinder.bindRoot(HbmBinder.java:144)

    at org.hibernate.cfg.Configuration.add(Configuration.java:424)

    at org.hibernate.cfg.Configuration.addInputStream(Configuration.java:465)

    at org.hibernate.cfg.Configuration.addResource(Configuration.java:520)

    at org.hibernate.cfg.Configuration.parseMappingElement(Configuration.java:1511)

    at org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1479)

    at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1458)

    at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1432)

    at org.hibernate.cfg.Configuration.configure(Configuration.java:1352)

    at org.hibernate.cfg.Configuration.configure(Configuration.java:1338)

    at com.asjy.hibernate.test.TestVo.main(TestVo.java:14)

Caused by: java.lang.ClassNotFoundException: org.apache.commons.collections.SequencedHashMap

    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)

    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)

    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)

    ... 15 more

 

错误4 未找到mysql数据库驱动

2010-5-20 14:45:27 org.hibernate.connection.C3P0ConnectionProvider configure

严重: JDBC Driver class not found: com.mysql.jdbc.Driver

java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)

    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)

    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)

    at java.lang.Class.forName0(Native Method)

    at java.lang.Class.forName(Class.java:169)

    at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:100)

    at org.hibernate.connection.C3P0ConnectionProvider.configure(C3P0ConnectionProvider.java:65)

    at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)

    at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56)

    at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:397)

    at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62)

    at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1933)

    at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1216)

    at com.asjy.hibernate.test.TestVo.main(TestVo.java:14)

org.hibernate.HibernateException: JDBC Driver class not found: com.mysql.jdbc.Driver

    at org.hibernate.connection.C3P0ConnectionProvider.configure(C3P0ConnectionProvider.java:70)

    at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)

    at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56)

    at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:397)

    at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62)

    at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1933)

    at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1216)

    at com.asjy.hibernate.test.TestVo.main(TestVo.java:14)

Caused by: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)

    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)

    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)

    at java.lang.Class.forName0(Native Method)

    at java.lang.Class.forName(Class.java:169)

    at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:100)

    at org.hibernate.connection.C3P0ConnectionProvider.configure(C3P0ConnectionProvider.java:65)

    ... 7 more

 

错误5:未找到c3p0连接池包

Exception in thread "main" java.lang.NoClassDefFoundError: com/mchange/v2/c3p0/PoolConfig

    at org.hibernate.connection.C3P0ConnectionProvider.configure(C3P0ConnectionProvider.java:84)

    at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:124)

    at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:56)

    at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:397)

    at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:62)

    at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1933)

    at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1216)

    at com.asjy.hibernate.test.TestVo.main(TestVo.java:14)

Caused by: java.lang.ClassNotFoundException: com.mchange.v2.c3p0.PoolConfig

    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)

    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)

    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)

    ... 8 more

 

错误6:未找到cglib

Exception in thread "main" java.lang.NoClassDefFoundError: net/sf/cglib/proxy/CallbackFilter

    at org.hibernate.bytecode.cglib.BytecodeProviderImpl.getProxyFactoryFactory(BytecodeProviderImpl.java:33)

    at org.hibernate.tuple.entity.PojoEntityTuplizer.buildProxyFactoryInternal(PojoEntityTuplizer.java:182)

    at org.hibernate.tuple.entity.PojoEntityTuplizer.buildProxyFactory(PojoEntityTuplizer.java:160)

    at org.hibernate.tuple.entity.AbstractEntityTuplizer.<init>(AbstractEntityTuplizer.java:135)

    at org.hibernate.tuple.entity.PojoEntityTuplizer.<init>(PojoEntityTuplizer.java:55)

    at org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping.<init>(EntityEntityModeToTuplizerMapping.java:56)

    at org.hibernate.tuple.entity.EntityMetamodel.<init>(EntityMetamodel.java:269)

    at org.hibernate.persister.entity.AbstractEntityPersister.<init>(AbstractEntityPersister.java:425)

    at org.hibernate.persister.entity.SingleTableEntityPersister.<init>(SingleTableEntityPersister.java:109)

    at org.hibernate.persister.PersisterFactory.createClassPersister(PersisterFactory.java:55)

    at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:226)

    at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1218)

    at com.asjy.hibernate.test.TestVo.main(TestVo.java:14)

Caused by: java.lang.ClassNotFoundException: net.sf.cglib.proxy.CallbackFilter

    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)

    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)

    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)

    ... 13 more

错误7:未找到asm

Exception in thread "main" java.lang.NoClassDefFoundError: org/objectweb/asm/Type

    at net.sf.cglib.core.TypeUtils.parseType(TypeUtils.java:180)

    at net.sf.cglib.core.KeyFactory.<clinit>(KeyFactory.java:66)

    at net.sf.cglib.proxy.Enhancer.<clinit>(Enhancer.java:69)

    at org.hibernate.proxy.pojo.cglib.CGLIBLazyInitializer.getProxyFactory(CGLIBLazyInitializer.java:111)

    at org.hibernate.proxy.pojo.cglib.CGLIBProxyFactory.postInstantiate(CGLIBProxyFactory.java:43)

    at org.hibernate.tuple.entity.PojoEntityTuplizer.buildProxyFactory(PojoEntityTuplizer.java:162)

    at org.hibernate.tuple.entity.AbstractEntityTuplizer.<init>(AbstractEntityTuplizer.java:135)

    at org.hibernate.tuple.entity.PojoEntityTuplizer.<init>(PojoEntityTuplizer.java:55)

    at org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping.<init>(EntityEntityModeToTuplizerMapping.java:56)

    at org.hibernate.tuple.entity.EntityMetamodel.<init>(EntityMetamodel.java:269)

    at org.hibernate.persister.entity.AbstractEntityPersister.<init>(AbstractEntityPersister.java:425)

    at org.hibernate.persister.entity.SingleTableEntityPersister.<init>(SingleTableEntityPersister.java:109)

    at org.hibernate.persister.PersisterFactory.createClassPersister(PersisterFactory.java:55)

    at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:226)

    at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1218)

    at com.asjy.hibernate.test.TestVo.main(TestVo.java:14)

Caused by: java.lang.ClassNotFoundException: org.objectweb.asm.Type

    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)

    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)

    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)

    ... 16 more

 

错误8:没找到jta.jar

Exception in thread "main" java.lang.NoClassDefFoundError: javax/transaction/Synchronization

    at org.hibernate.impl.SessionImpl.<init>(SessionImpl.java:213)

    at org.hibernate.impl.SessionFactoryImpl.openSession(SessionFactoryImpl.java:471)

    at org.hibernate.impl.SessionFactoryImpl.openSession(SessionFactoryImpl.java:495)

    at org.hibernate.impl.SessionFactoryImpl.openSession(SessionFactoryImpl.java:503)

    at com.asjy.hibernate.test.TestVo.main(TestVo.java:14)

Caused by: java.lang.ClassNotFoundException: javax.transaction.Synchronization

    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)

    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)

    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)

    ... 5 more

 

错误9:缺少jdbc2_0-stdext.jar

 

org.hibernate.exception.JDBCConnectionException: Cannot open connection

    at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:74)

    at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)

    at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:29)

    at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager.java:420)

    at org.hibernate.jdbc.ConnectionManager.getConnection(ConnectionManager.java:144)

    at org.hibernate.jdbc.AbstractBatcher.prepareStatement(AbstractBatcher.java:94)

    at org.hibernate.id.insert.AbstractSelectingDelegate.performInsert(AbstractSelectingDelegate.java:30)

    at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2093)

    at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2573)

    at org.hibernate.action.EntityIdentityInsertAction.execute(EntityIdentityInsertAction.java:47)

    at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:248)

    at org.hibernate.event.def.AbstractSaveEventListener.performSaveOrReplicate(AbstractSaveEventListener.java:290)

    at org.hibernate.event.def.AbstractSaveEventListener.performSave(AbstractSaveEventListener.java:180)

    at org.hibernate.event.def.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:108)

    at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:186)

    at org.hibernate.event.def.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:33)

    at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:175)

    at org.hibernate.event.def.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:27)

    at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:70)

    at org.hibernate.impl.SessionImpl.fireSave(SessionImpl.java:535)

    at org.hibernate.impl.SessionImpl.save(SessionImpl.java:523)

    at org.hibernate.impl.SessionImpl.save(SessionImpl.java:519)

    at com.asjy.hibernate.test.TestVo.main(TestVo.java:22)

错误10:数据库名字写错了,这个错误最累人,查了好久。

org.hibernate.exception.JDBCConnectionException: Cannot open connection

    at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:74)

    at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)

    at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:29)

    at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager.java:420)

    at org.hibernate.jdbc.ConnectionManager.getConnection(ConnectionManager.java:144)

    at org.hibernate.jdbc.AbstractBatcher.prepareStatement(AbstractBatcher.java:94)

    at org.hibernate.id.insert.AbstractSelectingDelegate.performInsert(AbstractSelectingDelegate.java:30)

    at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2093)

    at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2573)

    at org.hibernate.action.EntityIdentityInsertAction.execute(EntityIdentityInsertAction.java:47)

    at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:248)

    at org.hibernate.event.def.AbstractSaveEventListener.performSaveOrReplicate(AbstractSaveEventListener.java:290)

    at org.hibernate.event.def.AbstractSaveEventListener.performSave(AbstractSaveEventListener.java:180)

    at org.hibernate.event.def.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:108)

    at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:186)

    at org.hibernate.event.def.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:33)

    at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:175)

    at org.hibernate.event.def.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:27)

    at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:70)

    at org.hibernate.impl.SessionImpl.fireSave(SessionImpl.java:535)

    at org.hibernate.impl.SessionImpl.save(SessionImpl.java:523)

    at org.hibernate.impl.SessionImpl.save(SessionImpl.java:519)

    at com.asjy.hibernate.test.TestVo.testInsert(TestVo.java:24)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at junit.framework.TestCase.runTest(TestCase.java:154)

    at junit.framework.TestCase.runBare(TestCase.java:127)

    at junit.framework.TestResult$1.protect(TestResult.java:106)

    at junit.framework.TestResult.runProtected(TestResult.java:124)

    at junit.framework.TestResult.run(TestResult.java:109)

    at junit.framework.TestCase.run(TestCase.java:118)

    at junit.framework.TestSuite.runTest(TestSuite.java:208)

    at junit.framework.TestSuite.run(TestSuite.java:203)

    at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:128)

    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)

    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)

    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)

    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)

    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)

Caused by: java.sql.SQLException: Connections could not be acquired from the underlying database!

[Cause: com.mchange.v2.resourcepool.CannotAcquireResourceException: A ResourcePool could not acquire a resource from its primary factory or source.

    at com.mchange.v2.resourcepool.BasicResourcePool.awaitAcquire(BasicResourcePool.java:970)

    at com.mchange.v2.resourcepool.BasicResourcePool.checkoutResource(BasicResourcePool.java:208)

    at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool.checkoutPooledConnection(C3P0PooledConnectionPool.java:232)

    at com.mchange.v2.c3p0.PoolBackedDataSource.getConnection(PoolBackedDataSource.java:94)

    at org.hibernate.connection.C3P0ConnectionProvider.getConnection(C3P0ConnectionProvider.java:35)

    at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager.java:417)

    at org.hibernate.jdbc.ConnectionManager.getConnection(ConnectionManager.java:144)

    at org.hibernate.jdbc.AbstractBatcher.prepareStatement(AbstractBatcher.java:94)

    at org.hibernate.id.insert.AbstractSelectingDelegate.performInsert(AbstractSelectingDelegate.java:30)

    at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2093)

    at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2573)

    at org.hibernate.action.EntityIdentityInsertAction.execute(EntityIdentityInsertAction.java:47)

    at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:248)

    at org.hibernate.event.def.AbstractSaveEventListener.performSaveOrReplicate(AbstractSaveEventListener.java:290)

    at org.hibernate.event.def.AbstractSaveEventListener.performSave(AbstractSaveEventListener.java:180)

    at org.hibernate.event.def.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:108)

    at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:186)

    at org.hibernate.event.def.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:33)

    at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:175)

    at org.hibernate.event.def.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:27)

    at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:70)

    at org.hibernate.impl.SessionImpl.fireSave(SessionImpl.java:535)

    at org.hibernate.impl.SessionImpl.save(SessionImpl.java:523)

    at org.hibernate.impl.SessionImpl.save(SessionImpl.java:519)

    at com.asjy.hibernate.test.TestVo.testInsert(TestVo.java:24)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at junit.framework.TestCase.runTest(TestCase.java:154)

    at junit.framework.TestCase.runBare(TestCase.java:127)

    at junit.framework.TestResult$1.protect(TestResult.java:106)

    at junit.framework.TestResult.runProtected(TestResult.java:124)

    at junit.framework.TestResult.run(TestResult.java:109)

    at junit.framework.TestCase.run(TestCase.java:118)

    at junit.framework.TestSuite.runTest(TestSuite.java:208)

    at junit.framework.TestSuite.run(TestSuite.java:203)

    at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:128)

    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)

    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)

    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)

    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)

    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)

]

    at com.mchange.v2.sql.SqlUtils.toSQLException(SqlUtils.java:109)

    at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool.checkoutPooledConnection(C3P0PooledConnectionPool.java:236)

    at com.mchange.v2.c3p0.PoolBackedDataSource.getConnection(PoolBackedDataSource.java:94)

    at org.hibernate.connection.C3P0ConnectionProvider.getConnection(C3P0ConnectionProvider.java:35)

    at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager.java:417)

    ... 37 more

 

 

排除了这么多错误,不知道可不可以还出现问题。

以后就叫hibernate错误集,更新得了。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值