您的位置:首页 > 运维架构

hibernate.properties及hibernate.cfg.xml

2012-06-17 11:13 330 查看
hibernate.properties和 hibernate.cfg.xml是hibernate的配置文件,对于初学者,可能存在一些配置疑难。本文给出了hibernate.properties及hibernate.cfg.xml内容配置样例,二者选其一即可

hibernate.properties

##---------- thisis the connection and hibernate.dialect fo mysql--------------------------------

hibernate.dialect=net.sf.hibernate.dialect.MySQLDialect

hibernate.connection.driver_class=org.gjt.mm.mysql.Driver

hibernate.connection.url=jdbc:mysql://ip:3306/databasename?lastUpdateCount=true;useUnicode=true;characterEncoding=gb2312

hibernate.connection.username=root

hibernate.connection.password=

##---------- thisis the connection and hibernate.dialect fo mssqlserver--------------------------------

#hibernate.dialect=net.sf.hibernate.dialect.SQLServerDialect

#hibernate.connection.driver_class=net.sourceforge.jtds.jdbc.Driver

#hibernate.connection.url=jdbc:jtds:sqlserver://IP:1433;DatabaseName=databasename;charset=cp936

#hibernate.connection.username=sa

#hibernate.connection.password=sa

##---------- thisis the connection and hibernate.dialect fo ibmdb2--------------------------------

#hibernate.dialect=net.sf.hibernate.dialect.DB2Dialect

#hibernate.connection.driver_class=COM.ibm.db2.jdbc.app.DB2Driver

#hibernate.connection.url=jdbc:db2:databasename

#hibernate.connection.username=sa

#hibernate.connection.password=sa

##---------- thisis the connection and hibernate.dialect fo Oracle--------------------------------

#hibernate.dialect=net.sf.hibernate.dialect.Oracle9Dialect

#hibernate.dialect=net.sf.hibernate.dialect.OracleDialect

#hibernate.connection.driver_class=oracle.jdbc.driver.OracleDriver

#hibernate.connection.url=jdbc:oracle:thin:@localhost:1521:databasename

#hibernate.connection.username=ora

#hibernate.connection.password=ora

##---------- afteris hibernate config

hibernate.show_sql=true

hibernate.query.substitutions=true 1, false 0, yes 'Y', no 'N'

hibernate.jdbc.use_streams_for_binary=true

hibernate.cache.region_prefix=hibernate.test

hibernate.cache.use_query_cache=true

hibernate.cache.provider_class=net.sf.ehcache.hibernate.Provider

hibernate.connection.pool.size=20

hibernate.jdbc.batch_size=25

hibernate.statement_cache.size = 6

jdbc.fetch_size=50

jdbc.use_scrollable_resultset=false

jdbc.use_scrollable_resultset=false

hibernate.jdbc.use_streams_for_binary=true

hibernate.max_fetch_depth=1

##############################

### Proxool Connection Pool###

##############################

## Properties forexternal configuration of Proxool

hibernate.proxool.pool_aliasnetAuditing

## Only need oneof the following

#hibernate.proxool.existing_pooltrue

#hibernate.proxool.xml cfg/proxool.xml

#hibernate.proxool.properties proxool.properties

##########################

### Second-level Cache ###

##########################

## optimize chachefor minimal "puts" instead of minimal "gets" (good forclustered cache)

#hibernate.cache.use_minimal_putstrue

## set a prefix for cache region names

hibernate.cache.region_prefixhibernate.test

## enable the query cache

hibernate.cache.use_query_cachetrue

## choose a cache implementation

hibernate.cache.provider_classnet.sf.ehcache.hibernate.Provider

hibernate.cfg.xml

<!DOCTYPEhibernate-configuration

PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"

"http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">

<hibernate-configuration>

<session-factory>

<propertyname="dialect">net.sf.hibernate.dialect.MySQLDialect</property>

<propertyname="connection.driver_class">org.gjt.mm.mysql.Driver</property>

<propertyname="connection.url">jdbc:mysql://IP:3306/databasename?lastUpdateCount=true;useUnicode=true;characterEncoding=gb2312</property>

<propertyname="connection.driver_class">org.gjt.mm.mysql.Driver</property>

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

<property name="connection.password">root</property>

<property name="show_sql">false</property>

<!-- Mapping files -->

<mapping resource="com/orm.hbm.xml"/>

</session-factory>

</hibernate-configuration>

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息