Strut1和Spring的整合

原文

第一种集成方法

原理:在Action中取得BeanFactory对象,然后通过BeanFactory获取业务逻辑对象

缺点:产生了依赖,spring的类在action中产生了依赖查找。(注意和依赖注入的区别(前者主动))。

 

1springstruts依赖库配置

        * 配置struts

                  --拷贝struts类库和jstl类库

                  --修改web.xml文件来配置ActionServlet

                  --提供struts-config.xml文件

                  --提供国际化资源文件

        * 配置spring

                  --拷贝spring类库

                  --提供spring配置文件

                  

2、在strutsAction中调用如下代码取得BeanFactory

        

BeanFactoryfactory =WebApplicationContextUtils.getRequiredWebApplicationContext(request.getSession().getServletContext());

使用listener配置beanfactory,将其初始化交给servlet,使其维持在ServletContext中,节省资源。(Listener初始化早于ServletWeblogic8除外))

<context-param>

    <param-name>contextConfigLocation</param-name>

    <param-value>classpath*:applicationContext-*.xml</param-value>

</context-param>

        <listener>        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

        </listener>

 

 

3、通过BeanFactory取得业务对象,调用业务逻辑方法

补充:(Struts1.x相关并和Spring集成)

 

扩展学习:

lJbossjar包加载顺序(根据字母),因此可能使得有些包无法加载。

l 使用高级模板创建的jsp文件,由于有

<%

String path= request.getContextPath();

StringbasePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

%>

------------

<basehref="<%=basePath%>"/>

        因此,jsp中的目录都会从根目录下查找。

lServletListener

ListenerServlet的监听器,它可以监听客户端的请求、服务端的操作等。通过监听器,可以自动激发一些操作,比如监听在线的用户的数量。当增加一个HttpSession时,就激发sessionCreated(HttpSessionEventse)方法,这样就可以给在线人数加1。常用的监听接口有以下几个:

ServletContextAttributeListener监听对ServletContext属性的操作,比如增加、删除、修改属性。

ServletContextListener监听ServletContext。当创建ServletContext时,激发contextInitialized(ServletContextEventsce)方法;当销毁ServletContext时,激发contextDestroyed(ServletContextEventsce)方法。

HttpSessionListener监听HttpSession的操作。当创建一个Session时,激发sessionCreated(HttpSessionEvent se)方法;当销毁一个Session时,激发sessionDestroyed(HttpSessionEvent se)方法。

HttpSessionAttributeListener监听HttpSession中的属性的操作。当在Session增加一个属性时,激发attributeAdded(HttpSessionBindingEventse) 方法;当在Session删除一个属性时,激发attributeRemoved(HttpSessionBindingEventse)方法;当在Session属性被重新设置时,激发attributeReplaced(HttpSessionBindingEventse) 方法。

 

第二种集成方案

原理:将业务逻辑对象通过spring注入到Action中,从而避免了在Action类中的直接代码查询

(客户端请求---->代理action--->取得beanFactory--->getBean(..)创建action示例--->执行exctute方法)

1springstruts依赖库配置

        * 配置struts

                  --拷贝struts类库和jstl类库

                  --修改web.xml文件来配置ActionServlet

                  --提供struts-config.xml文件

                  --提供国际化资源文件

        * 配置spring

                  --拷贝spring类库

                  --提供spring配置文件

2、因为Action需要调用业务逻辑方法,所以需要在Action中提供setter方法,让spring将业务逻辑对象注入过来

 

3、在struts-config.xml文件中配置Action

      * <action>标签中的type属性需要修改为

                           org.springframework.web.struts.DelegatingActionProxy

      DelegatingActionProxy是一个Action,主要作用是取得BeanFactory,然后根据<action>中的path属性值

      IoC容器中取得本次请求对应的Action

      

4、在spring配置文件中需要定义strutsAction,如:

        <bean name="/login"class="com.bjsxt.usermgr.actions.LoginAction"scope="prototype">

                  <property name="userManager"ref="userManager"/>

        </bean>

        * 必须使用name属性,name属性值必须和struts-config.xml文件中<action>标签的path属性值一致

        * 必须注入业务逻辑对象

        * 建议将scope设置为prototype,这样就避免了strutsAction的线程安全问题

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值