billbryant

导航

hibernate整合spring开发的时候遇到的一些小问题

1

在spring整合hibernate开发的时候,在数据源里面配置show_sql为true,但是在实际查询的时候并没有打印sql语句,正确的解决方案为:

把<prop key="show_sql">true</prop>

改成:

<prop key="hibernate.show_sql">true</prop>  

 

2

Could not obtain transaction-synchronized Session for current thread 各种都配置好了最后运行的时候报这个错:

在事务配置里面 <tx:advice ..>

                              <tx:attributes>

                  ......(这里必须处理所有的方法,要用到*!)

          </tx:attributes>

        </tx:advice> 

不一定能解决到这个错,但是我就用这个方法解决的

 

3

hibenate不能自动建表,数据库用mysql,而且有的表可以建有的表不能建。

解决方法:hibenate里面方言设置:MySQL5Dialect MySQLDialect   MySQLInnoDBDialect   MySQL5InnoDBDialect 这4个方言找合适的用

posted on 2016-03-15 17:43  billbryant  阅读(179)  评论(0编辑  收藏  举报