?
?1
<?
xml?version='1.0'?encoding='utf-8'
?>
?2
<!
DOCTYPE?hibernate-configuration?PUBLIC
?3
?????"-//Hibernate/Hibernate?Configuration?DTD//EN"
?4
???????"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"
>
?
?5
???????
?6
???????
?7
<
hibernate-configuration
>
?8
?9
<
session-factory
>
10
11
????
<
property?
name
="connection.datasource"
>
java:comp/env/jdbc/test
</
property
>
12
????
<
property?
name
="show_sql"
>
true
</
property
>
13
????
<
property?
name
="dialect"
>
org.hibernate.dialect.SQLServerDialect
</
property
>
14
????
<
property?
name
="dialect"
>
org.hibernate.dialect.MySQLDialect
</
property
>
15
????
16
????
<
mapping?
resource
="test/entity/AuthCode.hbm.xml"
/>
17
????
18
</
session-factory
>
19
20
</
hibernate-configuration
>

?2

?3

?4

?5

?6

?7

?8

?9

10

11

12

13

14

15

16

17

18

19

20
