原来这篇文章发在了csdn的blog上了,但是那个blog用起来感觉实在不爽,后来文章中的图片因为放到别人的服务器上,所以在人家换服务器后就找不到了,有好几位朋友msn过来问我图片那里去了,给大家造成了不便非常抱歉,在此把pdf格式的文档放在此处下载。
利用MyEclipse开发Struts+Hibernate应用
点击下载其中文章中有个小的错误:
VipService.java中所有关闭session的地方有个小问题,还是需要通过SessionFactory来关闭。
之前代码:
if (session != null)
{
try
{
session.close();
}
catch (HibernateException e)
{
System.err.println("Hibernate Exception" + e.getMessage());
throw new RuntimeException(e);
}
}
修改之后:
try {
SessionFactory.closeSession();
} catch (HibernateException e) {
System.err.println("Hibernate Exception" + e.getMessage());
throw new RuntimeException(e);
}