⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hibernate.cfg.xml

📁 产品程序
💻 XML
字号:
<!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="show_sql">true</property>
      <property name="current_session_context_class">thread</property>
      
      <property name="hibernate.cache.use_query_cache">true</property>
      <property name="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</property>
      
      <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
   	  <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
   	  <property name="hibernate.connection.username">root</property>
   	  <property name="hibernate.connection.password">abc</property>
   	  <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/mydb</property>
   	  <mapping resource="xml/p.hbm.xml"/>
   	 <mapping resource="xml/products.hbm.xml"/>
   </session-factory>
</hibernate-configuration>

⌨️ 快捷键说明

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