在hibernate框架中配置显示sql语句

来源:互联网 发布:淘宝网双肩女包卡帝包 编辑:程序博客网 时间:2024/04/30 00:05

<hibernate-configuration>

 

   <session-factory>

  
  <property name="myeclipse.connection.profile">mysql</property>
  <mapping resource="com/chenhui/bean/TUserLogin.hbm.xml" />
  <mapping resource="com/chenhui/bean/TUserContent.hbm.xml" />
  <mapping resource="com/chenhui/bean/TComment.hbm.xml" />
  <mapping resource="com/chenhui/bean/TVideo.hbm.xml" />


      <property name="dialect">
          org.hibernate.dialect.MySQLDialect
      </property>


   <property name="connection.url">
       jdbc:mysql://localhost:3306/video
    </property>


  <property name="connection.username">root</property>


  <property name="connection.password">123</property>


  <property name="connection.driver_class">
   com.mysql.jdbc.Driver
  </property>
  
  <property name="hibernate.show_sql">true</property
><!-- 配置显示sql语句 -->
  <property name="format_sql">true</property
><!-- 让输出的sql语句格式化 -->

 


 </session-factory>

</hibernate-configuration>

原创粉丝点击