博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring和struts整合
阅读量:4972 次
发布时间:2019-06-12

本文共 2535 字,大约阅读时间需要 8 分钟。

整合准备:导入jar包

如果只是访问action,没有做数据库方面的操作的话 只需要导入下面的jar

spring相关jar

 

 

以及struts相关jar包

 

整合过程:

用到了struts所以需要在web.xml中配置过滤器 ,又因为使用到了spring的监听器来提高性能,所以也需要配置监听器

web.xml代码:

1 
2
7
8
index.jsp
9
10
11
12
struts2
13
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
14
15
actionPackages
16
com.mycompany.myapp.actions
17
18
19 20
21
struts2
22
/*
23
24
25
26
org.springframework.web.context.ContextLoaderListener
27
28
29
contextConfigLocation
30
classpath:bean.xml
31
32

在src下分别创建struts.xml和applicationContext.xml文件

1 
2 5
6
7
8
9
12
13
14
1 
2
15 16
17
18

注意这里 action中的class属性的值和spring配置文件中的id值对应

action代码:

1 package org.action; 2  3 import javax.servlet.ServletContext; 4  5 import org.apache.struts2.ServletActionContext; 6 import org.springframework.context.ApplicationContext; 7 import org.springframework.web.context.WebApplicationContext; 8  9 import com.opensymphony.xwork2.ActionSupport;10 11 public class UserAction extends ActionSupport {12 13     @Override14     public String execute() throws Exception {15         // TODO Auto-generated method stub16         System.out.println("action。。。。。。。");17         ServletContext s=ServletActionContext.getServletContext();18         ApplicationContext ac=(ApplicationContext) s.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);19         if(ac!=null){20             System.out.println("服务器启动时创建了applicationContext对象.........");21         }22         return NONE;23     }24 25 }

启动服务器:

控制台打印:

请求action时的过程:

 

请求action时,会根据请求的action名称 去struts配置中找到与之对应的id值

找到之后不需要重新创建action对象了 因为创建对象的交给了Spring管理
加载Spring配置文件的时候 如果其中有对象的配置 那么此时就会创建配置对象
而一般为了提高性能 在服务器启动的时候就去加载Spring配置文件(利用Spring监听器实现) 创建在其中配置的对象 并且放在域对象中
所以 这里就会根据struts配置文件中对应id值后的class属性(是Spring配置文件的id值 不是action类路径)的值 去Spring配置文件中找到与之对应的id值
这样配置的前提当然是需要导入Spirng与struts整合jar包
【struts2-spring-plugin-2.3.30.jar】

 

转载于:https://www.cnblogs.com/Joke-Jay/p/6523391.html

你可能感兴趣的文章
谈谈我对学习技术的一点体会和看法
查看>>
在jquery中处理带有命名空间的XML数据
查看>>
接口连接
查看>>
Android测试环境搭建(win7)
查看>>
shell编程中用户输入处理(shell 04)
查看>>
moble slider
查看>>
line-height的笔记
查看>>
linux命令大全
查看>>
REST API (from IBM)
查看>>
【IOI 2002/FJOI2019】任务安排(超级计算机)
查看>>
自定义适用于手机和平板电脑的 Dynamics 365(二):窗体自定义项
查看>>
[SDOI2019]快速查询
查看>>
Python入门
查看>>
Ajax校验
查看>>
在线电子地图离线部署及开发
查看>>
配色方案
查看>>
JDK源码分析(3)之 ArrayList 相关
查看>>
基于ASP.NET的MVC框架下的MvcPaper分页控件的使用技术
查看>>
Xen的调度分析 (二) ——关于credit调度算法
查看>>
Using the ForeFront Identity Manager to Configure SharePoint 2010’s User Profile Sync Service
查看>>