gpt4 book ai didi

Spring与Web整合实例

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 24 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Spring与Web整合实例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

一 概述 。

1.整合目的 。

将所有对象的创建与管理任务交给Spring容器,降低程序的耦合度.

2.整合途径 。

将Spring容器注入到Web容器中.

3.具体实现 。

使用ServletContextListener监听ServletContext,当ServletContexxt创建时同时创建Spring容器,并将创建完成的容器放到ServletContext即application中,在Web中获取Spring容器,就可以访问对象了。ContextLoadListener是ServletContextListener的一个实现类,配置:

?
1
2
3
< listener >
   < listener-class >org.springframework.web.context.ContextLoaderListener</ listener-class >
</ listener >

  。

默认情况下,Spring的配置文件只能放在WEB-INF目录下,名称为applicationContext.xml,可以在web.xml文件中修改,将配置文件放在src目录下:

?
1
2
3
4
< context-param >
   < param-name >contextConfigLocation</ param-name >
   < param-value >classpath:xxxx.xml</ param-value >
</ context >

  。

4.获取Spring容器 。

?
1
WebApplicationContext context=WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());

  。

二 延时加载问题 。

1.原因 。

视图层调用Service的方法从数据库中加载对象,如果Dao实现层采用了延时加载,返回一个包含null对象的代理,在视图层访问对象的详情时,Service层已经执行完毕,事务已关闭,对象为空,就无法获取对象的详情.

2.解决方法 。

将Session与请求线程绑定,允许在事务关闭以后完成延时加载任务.

3.具体实现 。

在web.xml中配置:

?
1
2
3
4
5
6
7
8
< filter >
   < filter-name >openSessionInViewFilter</ filter-name >
   < filter-class >org.springframework.orm.hibernate5.support.OpenSessionInViewFilter</ filter-class >
</ filter >
< filter-mapping >
   < filter-name >opernSessionInViewFilter</ filter-name >
   < url-pattern >/*</ url-pattern >
</ filter-mapping >

以上这篇Spring与Web整合实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我.

最后此篇关于Spring与Web整合实例的文章就讲到这里了,如果你想了解更多关于Spring与Web整合实例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com