hibernate3-初学hibernate,Configuration().configure()错误

问题描述

初学hibernate,Configuration().configure()错误

初学hibernate,全部都是自己手写的,配置文件时参考hibernateAPI写的,但每次运行到
conf = new Configuration().configure();时就会直接跳到finally了。请问是我的配置文件写错了还是哪里出错了呢???
配置文件:
<?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">

<session-factory>

    <!-- Database connection settings -->
    <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
    <property name="connection.url">jdbc:mysql://127.0.0.1:3306/lcfer</property>
    <property name="connection.username">root</property>
    <property name="connection.password"></property>

    <!-- JDBC connection pool (use the built-in)-->
    <property name="connection.pool_size">1</property> 

    <!-- SQL dialect-->
    <property name="dialect">org.hibernate.dialect.MySQLDialect</property> 

    <!-- Enable Hibernate's automatic session context management
            使Hibernate的自动会话上下文管理-->
    <property name="current_session_context_class">thread</property>

    <!-- Disable the second-level cache
        禁用第二级缓存-->
    <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>

    <!-- Echo all executed SQL to stdout -->
    <property name="show_sql">true</property>

    <!-- Drop and re-create the database schema on startup
        在启动时删除和重新创建数据库模式-->
    <property name="hbm2ddl.auto">create</property>

    <mapping resource="com/model/User.hbm.xml"/>

</session-factory>

测试类:
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.junit.Test;

import com.model.User;

public class UserTest {
@Test
public void test(){
User u = new User();
u.setUserid(6);
u.setName("lin");
u.setAccount("L");
u.setPassword("123");
u.setSix(true);
u.setUsergroup("管理员");

    Configuration conf = null;
    SessionFactory sessionFactory = null;
    Session session = null;
    Transaction tx = null;
    try {
        conf = new Configuration().configure();
        sessionFactory = conf.buildSessionFactory();
        session = sessionFactory.openSession();
        tx = session.beginTransaction();
        session.save(u);
        tx.commit();
    } catch (HibernateException e) {
        e.printStackTrace();
    } finally{
        session.close();
        sessionFactory.close();
    }
}

}

解决方案

你把报的错贴出来看下啊.

时间: 2024-09-19 19:57:17

hibernate3-初学hibernate,Configuration().configure()错误的相关文章

java-JAVA问题:初学Hibernate框架时遇到的疑问

问题描述 JAVA问题:初学Hibernate框架时遇到的疑问 报的错误是:Duplicate property mapping of dirId found in com.cailikun.Product 解决方案 你上图框住的配置跟上面的那个property标签指定的同名dirId重复了,many-to-one和property都是配置表列和类属性映射关系的,一个列只能用一个标签.你同时配两个,当然报错了! 解决方案二: dir_id出现了例名重复的错误.我初学的时候也学过了,你要用一个不同

初学hibernate框架

今天初次学习了hibernate,学习了hibernate的一些原理性知识.hibernate是基于ORM的持久层框架,它对JDBC进 行了非常轻量级的对象封装,使得Java程序员可以随心所欲的使用对象编程思维来操纵数据库.ORM(Object Relation Map)即对象关系映射,其映射方式有两种:①注解映射,②xml配置文件映射,其中第一种方式比较简单,但是耦合对要高,第二种方式虽然要复杂一点但是 耦合度相对低了很多,因为我们开发系统都追求高内聚.低耦合,所以第二种方式较常用. 使用hi

初学者开发的第一个Hibernate,如下错误%%%% Error Creating SessionFactory %%%%,求解

问题描述 %%%% Error Creating SessionFactory %%%%org.hibernate.MappingException: component class not found: vo.UserIdat org.hibernate.mapping.Component.getComponentClass(Component.java:105)at org.hibernate.tuple.PojoComponentTuplizer.buildGetter(PojoCompo

path-ubuntu编译./configure错误

问题描述 ubuntu编译./configure错误 configure: error: Library requirements (libgnome-2.0 >= 2.0.0 libgnomeui-2.0 >= 2.0.0 gtk+-2.0 >= 2.4.0 gnome-vfs-2.0 >= 2.6.0 libglade-2.0 >= 2.3.6) not met; consider adjusting the PKG_CONFIG_PATH environment var

c语言 树结构 二叉树-初学二叉树 运行有错误 瞅了几个小时无果 大神帮帮忙 找出错误在哪

问题描述 初学二叉树 运行有错误 瞅了几个小时无果 大神帮帮忙 找出错误在哪 ![图片说明](http://img.ask.csdn.net/upload/201503/07/1425715444_303984.png #include #include typedef struct Tree { int date; struct Tree *lson,*rson; }tree , *ztree; int a[200005]; ztree creat(ztree t,int n) { int h

springmvc+hibernate 实体类映射错误

问题描述 springmvc+hibernate 实体类映射错误 type Exception report message Request processing failed; nested exception is org.hibernate.hql.ast.QuerySyntaxException: Users is not mapped [from Users u where u.loginName='ss' and u.password='aa'] description The se

eclipse在未联网时使用hibernate插件出现错误

问题描述 eclipse在未联网时使用hibernate插件出现错误 今天遇到一个问题,在未联网的时候使用hibernate插件生成hibernate.reveng.xml时出现错误,当联网的时候一切正常. 因为公司的开发电脑也是未联网的,各位同行大神,有没有遇到相同的问题,这如何解决? 联网的时候却一切正常,请教各位兄弟姐妹们,给个解决方案,让hibernate插件在未联网时也能使用

初学Hibernate貌似出现驱动错误

问题描述 信息:RDBMS:Oracle,version:Oracle9iEnterpriseEditionRelease9.0.1.1.1-ProductionWiththePartitioningoptionJServerRelease9.0.1.1.1-Production2010-12-38:49:39org.hibernate.cfg.SettingsFactorybuildSettings信息:JDBCdriver:OracleJDBCdriver,version:9.0.1.1.0

hibernate 延迟加载的错误 failed to lazily initialize a collection of role

这个问题一般出现在一对多的情况下,解决的方法有两种1.设置lazy=false如果是用annotation,则配置如下@OneToMany(   targetEntity = CourseAuthorizationItem.class,   cascade = {CascadeType.PERSIST, CascadeType.MERGE},   mappedBy = "course", fetch=FetchType.EAGER  )将fetch类型设置成直接获取 2.就是使用fil