zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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 Tool 与数据库建立建立连接时使用(改其他名称貌似Hibernate Tool不认识...) -->
<hibernate-configuration>
    <!-- <session-factory name="sf"> <property name="hibernate.connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property> 
        <property name="hibernate.connection.password">123456</property> <property 
        name="hibernate.connection.url">jdbc:sqlserver://10.114.84.16:1433;database=tzdb</property> 
        <property name="hibernate.connection.username">appusr</property> <property 
        name="hibernate.default_catalog">tzdb</property> <property name="hibernate.default_schema">dbo</property> 
        <property name="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</property> 
        </session-factory> -->
    <session-factory name="sf">
        <property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
        <property name="hibernate.connection.password">lbit</property>
        <!--<property name="hibernate.connection.url">jdbc:oracle:thin:@10.39.123.2:1521:orcl</property>-->
        <property name="hibernate.connection.url">jdbc:oracle:thin:@192.168.19.241:1521:orcl</property> 
        <property name="hibernate.connection.username">gfsc</property>
        <property name="hibernate.dialect">org.hibernate.dialect.OracleDialect</property>
    </session-factory>
</hibernate-configuration>