首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

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

2012-10-09 
在hibernate框架中配置显示sql语句?hibernate-configuration?? session-factory??property namemye

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

?

<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>

热点排行