hibernate 配置 hibernate.cfg.xml

 1 <?xml version=‘1.0‘ encoding=‘UTF-8‘?>
 2 <!DOCTYPE hibernate-configuration PUBLIC
 3           "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
 4           "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
 5 <!-- Generated by MyEclipse Hibernate Tools. -->
 6 <hibernate-configuration>
 7
 8 <session-factory>
 9     <property name="dialect">
10         org.hibernate.dialect.MySQLDialect
11     </property>
12     <property name="connection.url">
13         jdbc:mysql://127.0.0.1:3306/hibernate
14     </property>
15     <property name="connection.username">root</property>
16     <property name="connection.driver_class">
17         com.mysql.jdbc.Driver
18     </property>
19     <property name="myeclipse.connection.profile">hibernate</property>
20     <property name="connection.password">123456</property>
21
22
23     <mapping resource="com/cwl/Goods.hbm.xml" />
24     <mapping resource="com/cwl/User.hbm.xml" />
25
26 </session-factory>
27
28 </hibernate-configuration>
29  
时间: 2024-11-10 15:06:59

hibernate 配置 hibernate.cfg.xml的相关文章

手动配置Hibernate的方法

前言:一直习惯用MyEclipse自动生成Hibernate,但是对手动配置一直不甚了解,都不好意思说自己是搞java的.所以赶紧复习了一下手动配置,并记录在此,以便常回来看看! 第一步:搭建环境 在Hibernate主页下载hibernate-distribution-3.3.2.GA-dist.zip(这个很难找,一定要耐心!),解压后把根目录的hibernate3.jar和required文件夹里的所有的包.数据库驱动JAR,复制到WEB-INFO的lib里. 然后在项目里build-pa

NHibernate.cfg.xml文件总结

A. 问题: NHibernate.cfg.xml用来干什么的? 答: 配置数据库的基本信息和configuration和sessionFactory实例的基本信息的配置文件. B. 如何配置NHibernate.cfg.xml文件? 答: 第一种方式 Configuration config = new Configuration(); 这种配置方法将会到应用程序配置文件(App.Config,Web.Config)中查找NHibernate的配置信息,NHibernate的配置节必须符合应用

Caused by: org.jbpm.api.JbpmException: resource jbpm.cfg.xml does not exist

1.错误描述 2015-09-20 22:49:59 [main] WARN org.springframework.context.support.GenericApplicationContext - Exception encountered during context initialization - cancelling refresh attempt org.springframework.beans.factory.BeanCreationException: Error cre

Hibernate→ 《Hibernate程序开发》教材大纲

Hibernate ORM 概览 Hibernate 简介 Hibernate 架构 Hibernate 环境 Hibernate 配置 Hibernate 会话 Hibernate 持久化类 Hibernate 映射文件 Hibernate 映射类型 Hibernate 例子 Hibernate O/R 映射 Hibernate 注释 Hibernate 查询语言 Hibernate 标准查询 Hibernate 原生 SQL Hibernate 缓存 Hibernate 批处理 Hibern

Hibernate框架 主配置文件(Hibernate.cfg.xml) 映射配置 说明

Hibernate.cfg.xml 主配置文件中主要配置:数据库连接信息.其他参数.映射信息! 常用配置查看源码: hibernate-distribution-3.6.0.Final\project\etc\hibernate.properties   <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hiber

hibernate.cfg.xml配置(Oracle+c3p0)

说明:数据库:Oracle10g:连接池:c3p0 结构: 一.配置hibernate.cfg.xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforg

Hibernate.cfg.xml文件的配置

1.  Hibernate配置 1.1.  可编程的配置方式 一个org.hibernate.cfg.Configuration 实例代表了一个应用程序中Java类型到SQL数据库映射的完整集合.Configuration被用来构建一个 SessionFactory. 映射定义则由不同的XML映射定义文件编译而来. 可以直接实例化Configuration来获取一个实例,并为它指定XML映射定义文件. 如果映射定义文件在类路径(classpath)中,请使用addResource(): Conf

用hibernate.properties代替hibernate.cfg.xml配置常用的属性

我们使用hibernate时经常在hibernate.cfg.xml文件中配置数据库连接的相关属性,是否显示sql语句,数据库的方言等,这些配置其实也可以在.properties文件中配置.现在我把这把文件的名字起为:hibernate.properties. 思路:写一个domian对象,以及这个domain对象映射到数据库中的.hbm.xml文件.和一个测试类(这个测试类是更新数据库中的一条数据) 以及hibernate.properties文件(这个文件是放在src的下面即在classPa

hibernate.cfg.xml常见配置

转载自:http://blog.csdn.net/qiaqia609/article/details/9456489 1 <!--标准的XML文件的起始行,version='1.0'表明XML的版本,encoding='gb2312'表明XML文件的编码方式--> 2 <?xml version='1.0' encoding='gb2312'?> 3 <!--表明解析本XML文件的DTD文档位置,DTD是Document Type Definition 的缩写,即文档类型的定