用户登录
用户注册

分享至

hibernate oracle实例

  • 作者: 妖王之后
  • 来源: 51数据库
  • 2020-10-25

以下是hibernate.cfg.xml配置文件:

 <hibernate-configuration>

  <session-factory>

   <property name="hibernate.connection.url">jdbc:oracle:thin:@***:oadb</property>

    <property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>

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

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

    <property name="hibernate.dialect">">org.hibernate.dialect.Oracle9Dialect</property>

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

    <mapping resource="***.hbm.xml" />

   </session-factory>

 </hibernate-configuration>


软件
前端设计
程序设计
Java相关