1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory name="Hibernate"> <property name="hibernate.connection.driver_class"> net.sourceforge.jtds.jdbc.Driver </property> <property name="hibernate.connection.url"> jdbc:jtds:sqlserver://127.0.0.1:1433;DatabaseName=hibernate </property> <property name="hibernate.connection.username"> sa </property> <property name="hibernate.dialect"> org.hibernate.dialect.SQLServerDialect </property> <property name="hibernate.show_sql"> true </property> <mapping resource="sample/entity/Message.hbm.xml"/> </session-factory> </hibernate-configuration>
|