50c4cc37be2b001d10dcc9e30c9e2239

来自「客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户」· 代码 · 共 34 行

TXT
34
字号
<?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.username">root</property>
	<property name="connection.password"></property>
	<property name="connection.url">jdbc:mysql://localhost:3306/qrsxcrm</property>
	<property name="dialect">
		org.hibernate.dialect.MySQLDialect
	</property>
	<property name="connection.driver_class">
		com.mysql.jdbc.Driver
	</property>
	<property name="show_sql">true</property>

	<mapping resource="com/qrsx/qrsxcrm/model/Dept.hbm.xml" />	
	<mapping resource="com/qrsx/qrsxcrm/model/Duty.hbm.xml" />	
	<mapping resource="com/qrsx/qrsxcrm/model/Employee.hbm.xml" />
	<mapping resource="com/qrsx/qrsxcrm/model/ClientType.hbm.xml" />
	<mapping resource="com/qrsx/qrsxcrm/model/ProductionType.hbm.xml" />
	<mapping resource="com/qrsx/qrsxcrm/model/Production.hbm.xml" />
	<mapping resource="com/qrsx/qrsxcrm/model/ServiceType.hbm.xml" />
	<mapping resource="com/qrsx/qrsxcrm/model/User.hbm.xml" />
	<mapping resource="com/qrsx/qrsxcrm/model/Role.hbm.xml" />
	

</session-factory>

</hibernate-configuration>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?