Error: Lost connection to MySQL server during query
错误信息很明显了,在查询的时候丢失了和MYSQL数据库服务器的连接。
MYSQL不稳定。
错误信息很明显了,在查询的时候丢失了和MYSQL数据库服务器的连接。
MYSQL不稳定。
Tags: Lost connection query
08-06
28
An association from the table blur_article refers to an unmapped class: bl.site.myHibernate.po.perso
作者:Java伴侣 日期:2008-06-28
Hibernate升级到3以后,我发现原有的HibernateException异常被Hibernate自动处理了,于是把try/catch/finally去掉,结果就出了这么个异常,原因很简单,看代码:
catch块中的代码应该是:
否则通不过编译!应为抛出了异常后不能再有其它语句.
catch块中的代码应该是:
复制内容到剪贴板 程序代码
if (tx!=null) {
tx.rollback();
}
throw e;
tx.rollback();
}
throw e;
否则通不过编译!应为抛出了异常后不能再有其它语句.
Tags: Transaction started hibernate3