Hibernate的基本配置文件
<hibernate-configuration><!--下面是数据库的基本连接信息,对一个应用来说,设置一个session-factory节点就够了,除非我们中间使用了多个数据库--<session-factory><!--用户名--><propertyname="connection.username">root</property><!--url信息--><propertyname="connection.url">jdbc:mysql://localhost:3306/webases</property><!--数据库方言信息--><propertyname="dialect">org.hibernate.dialect.MySQLDialect</property><!--密码--><propertyname="connection.password">274507</property><!--数据库驱动信息--><propertyname="connection.driver_class">com.mysql.jdbc.Driver</property><!--指定Hibernate映射文件路径--><mappingresource="com/Hibernate/test_products.hbm.xml"/></session-factory></hibernate-configuration>