SSH框架中如何配置可以显示hibernate运行时的sql语句
- 提问者网友:锁深秋
- 2021-08-21 11:58
- 五星知识达人网友:人间朝暮
- 2021-08-21 12:49
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.SQLServerDialect
</prop>
<prop key="hibernate.show_sql">true</prop>//这一行就是关键,有了它就会显示运行时的sql语句
</props>
</property>
- 1楼网友:想偏头吻你
- 2021-08-21 13:46
以下就是hibernate.cfg.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="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>//连接数据库的驱动 <property name="hibernate.connection.url">jdbc:oracle:thin:@localhost:1521:orcl</property>//数据库的地址 <property name="hibernate.connection.username">scott</property>//数据库用户登陆名 <property name="hibernate.connection.password">tiger</property>//数据库登陆密码 <property name="dialect">org.hibernate.dialect.OracleDialect</property>//数据库方言 <property name="hbm2ddl.auto">create</property>//自动创建表格
<property name="show_sql">true</property>//是否在控制台输出运行时的sql语句
<mapping resource="com/newer/hibernate/domain/User.hbm.xml" />//实体对象的映射文件 </session-factory> </hibernate-configuration>
--------------
hibernate.cfg.xml配置文件基本的配置就是这样了
希望对你有帮助!