解决 bae 私有mysql 出现Caused by: java.net.SocketException: Connection reset的异常

时间:2014-07-22 22:49:04   收藏:0   阅读:462

public static String addStudent(Student student)
{
Configuration config = new Configuration().configure();
SessionFactory sessionFactory = config.buildSessionFactory();
String result="ok";
Session session=sessionFactory.openSession();
Transaction t=session.beginTransaction();

try {
session.save(student);
t.commit();
} catch (Exception e) {
result="fail";
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
session.close();
sessionFactory.close();
}

return result;
}

 

 

一定要注意要在每一个方法中创建sessionFactory,不能定义为全局静态变量!!!!! 

解决 bae 私有mysql 出现Caused by: java.net.SocketException: Connection reset的异常,布布扣,bubuko.com

原文:http://www.cnblogs.com/wangle2014/p/3855889.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!