hibernate连接oracle10g配置

时间:2023-01-27 07:30:29

首先配置映射文件,命名为:className(定义的类名).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 package="com.test">
<class name="News" table="news_table">
<id name="id" unsaved-value="null">
<generator class="native"/>////1111
</id>
<property name="title"/>
<property name="content"/>
</class>
</hibernate-mapping>
特别提醒标号1111的地方,class不能为identify,因为oracle不支持。

配置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.connection.driver_class">
oracle.jdbc.OracleDriver
</property>
<property name="hibernate.connection.url">
jdbc:oracle:thin:@localhost:1521:orcl
</property>
<property name="hibernate.dialect">
org.hibernate.dialect.Oracle10gDialect
</property>
<property name="hibernate.connection.username">scott</property>
<property name="hibernate.connection.password">tiger</property>

<property name="hbm2ddl.auto">create</property>//2222///
<property name="c3p0.min_size">1</property>
<property name="c3p0.max_size">30</property>
<property name="c3p0.time_out">1800</property>
<property name="c3p0.max_statement">50</property>
<mapping resource="News.hbm.xml" />
</session-factory>
</hibernate-configuration>
在第一次运行程序的时候标示2222的地方可以写create,还有其他值可选,如下:

validate               加载hibernate时,验证创建数据库表结构
create                  每次加载hibernate,重新创建数据库表结构,这就是导致数据库表数据丢失的原因。
create-drop        加载hibernate时创建,退出是删除表结构
update                 加载hibernate自动更新数据库结构

从解释可以明白,如果值一直是create的话,那么每次执行,表中只有一行数据,是因为先前加入的数据的表已被删除,每次执行都是新建表,

所以建议在执行了第一次后把制改为validate。