首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
其他好文
> 详细
[转]OpenSessionInView模式
时间:
2015-07-30 22:42:06
阅读:
154
评论:
0
收藏:
0
[点我收藏+]
标签:
OpenSessionInView模式解决的问题:
* hibernate事物边界问题
* 因session关闭导致hibernate延迟加载例外的问题
事物边界:
一个事物的完成应该是在业务层完成的,但是事物的创建却是在数据层来做,这样必定造成业务层和数据层耦合性增强。
延迟加载例外:
如你所知,延迟加载使用了动态代理机制,只有在真正使用这个对象的时候才会去访问数据库,但是如果在数据层进行了事物提交,session关闭,再去访问 数据就会导致延迟加载例外异常,所以我们必须加大session的生命周期,在访问数据之后关闭session。
因此我们可以通过OpenSessionInView模式来解决上面的问题
OpenSessionInView模式需要用到一个非常重要的一个类:ThreadLocal
OpenSessionInView模式:
* 需要构建一个过滤器,把事物的创建及提交放在过滤器里进行。
* 加大session的有效范围,把session放在当前线程里(ThreadLocal),使session在当前线程内有效,并且在当前线程内访问的是同一个session。
OpenSessionInView模式缺点:
*并发性减弱
*内存消耗加大
1.实体类:
Java代码
package com.yx.zzg.pojo;
import java.util.Date;
public
class User {
private String id;
private String username;
private String password;
private Date createTime;
private Date endTime;
public String getId() {
return id;
}
public
void setId(String id) {
this.id = id;
}
public String getUsername() {
return username;
}
public
void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public
void setPassword(String password) {
this.password = password;
}
public Date getCreateTime() {
return createTime;
}
public
void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getEndTime() {
return endTime;
}
public
void setEndTime(Date endTime) {
this.endTime = endTime;
}
}
2.映射文件:
Java代码
<?xml version=
"1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping
package=
"com.yx.zzg.pojo">
<
class name=
"User" table=
"t_user">
<id name=
"id">
<!-- 指定主键生成策略 -->
<generator
class=
"uuid" />
</id>
<property name=
"username" unique-key=
"true" />
<property name=
"password" />
<property name=
"createTime" />
<property name=
"endTime" />
</
class>
</hibernate-mapping>
3.提供一个过滤器:
Java代码
package com.yx.zzg.servelt;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import org.hibernate.Session;
import org.hibernate.Transaction;
import com.yx.zzg.util.HibernateUtil;
public
class OpenSessionInView
implements Filter {
public
void destroy() {
}
public
void doFilter(ServletRequest request, ServletResponse response,
FilterChain filter)
throws IOException, ServletException {
Transaction tx =
null;
Session session =
null;
try {
session = HibernateUtil.getThreadLocalSession();
tx = session.beginTransaction();
filter.doFilter(request, response);
tx.commit();
}
catch (Exception e) {
if (tx !=
null) {
tx.rollback();
throw
new RuntimeException(e.getMessage(),e);
}
}
finally {
HibernateUtil.colseSession();
}
}
public
void init(FilterConfig arg0)
throws ServletException {
}
}
4.web.xml中配置过滤器
Java代码
<filter>
<filter-name>OpenSessionInView</filter-name>
<filter-
class>com.yx.zzg.servelt.OpenSessionInView</filter-
class>
</filter>
<filter-mapping>
<filter-name>OpenSessionInView</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
5.HibernateUtil类:
Java代码
package com.yx.zzg.util;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public
class HibernateUtil {
private
static SessionFactory sessionFactory;
//创建一个ThreadLocal对象
private
static ThreadLocal threadSession =
new ThreadLocal();
private HibernateUtil() {
}
static {
Configuration cfg =
new Configuration().configure();
sessionFactory = cfg.buildSessionFactory();
}
/**
* 从当前线程中获取session,如果没有,则得到session,并将此session放入当前线程中
* @return
*/
public
static Session getThreadLocalSession() {
Session session = (Session) threadSession.get();
if (session ==
null) {
session = getSession();
threadSession.set(session);
}
return session;
}
/**
* 关闭session,并将当前线程中的session设置为null
*/
public
static
void colseSession() {
Session session = (Session) threadSession.get();
if (session !=
null) {
session.close();
threadSession.set(
null);
}
}
public
static Session getSession() {
return sessionFactory.openSession();
}
}
6.数据层方法:
Java代码
public User findUserById(String id) {
User user = (User) HibernateUtil.getThreadLocalSession().load(
User.
class, id);
return user;
}
[转]OpenSessionInView模式
标签:
原文地址:http://www.cnblogs.com/ZhuRenWang/p/4690719.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
分布式事务
2021-07-29
OpenStack云平台命令行登录账户
2021-07-29
getLastRowNum()与getLastCellNum()/getPhysicalNumberOfRows()与getPhysicalNumberOfCells()
2021-07-29
【K8s概念】CSI 卷克隆
2021-07-29
vue3.0使用ant-design-vue进行按需加载原来这么简单
2021-07-29
stack栈
2021-07-29
抽奖动画 - 大转盘抽奖
2021-07-29
PPT写作技巧
2021-07-29
003-核心技术-IO模型-NIO-基于NIO群聊示例
2021-07-29
Bootstrap组件2
2021-07-29
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!