Hibernate 配置文件

<?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-configuration>
	<session-factory>
		<!-- 数据库驱动 -->
		<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
		<!-- 数据库链接 URL -->
		<property name="connection.url">jdbc:mysql://localhost:3306/test</property>
		<!-- 数据库链接用户名 -->
		<property name="connection.username">root</property>
		<!-- 数据库链接密码 -->
		<property name="connection.password">111</property>
		<!-- Hibernate 方言 -->
		<property name="dialec">org.hibernate.dialect.MySQLDialect</property>
		<!-- 打印SQL语句 -->
		<property name="show_sql">true</property>
		<!-- 映射文件 -->
		<mapping resource=""/>
	</session-factory>
</hibernate-configuration>
相关文章
相关标签/搜索