<?xml version="1.0" encoding="utf-8"?><!DOCTYPE hibernate-configuration SYSTEM
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"><hibernate-configuration><session-factory><propertyname="hibernate.dialect">
org.hibernate.dialect.SQLServerDialect
</property><propertyname="hibernate.connection.driver_class">
com.microsoft.sqlserver.jdbc.SQLServerDriver
</property><!-- Assume test is the database name --><propertyname="hibernate.connection.url">
jdbc:sqlserver://localhost:1433;DatabaseName=db_test
</property><propertyname="hibernate.connection.username">
sa
</property><propertyname="hibernate.connection.password">
157147
</property><!-- List of XML mapping files --><mappingresource="hibernateTest/Info.hbm.xml"/><!-- 修改实体类名.hbm.xml文件 --></session-factory></hibernate-configuration>