博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
struts1的配置文件
阅读量:6424 次
发布时间:2019-06-23

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

  hot3.png

1.配置struts1时,需要在web.xml中配置相关信息:

 

action
org.apache.struts.action.ActionServlet
config
/WEB-INF/struts-config.xml
debug
3
detail
3
0
action
*.do
index.jsp
java.lang.Throwable
/common/500.jsp
500
/common/500.jsp
404
/common/404.jsp
403
/common/403.jsp
DB2 Connection
jdbc/DW
javax.sql.DataSource
Container

 

2.此外,struts.xml的配置如下:

 

3.其中的Action继承的是DispatchAction,当访问时,url为contentPath + wbgy.do?method=getAllWBGYXX。以下是action中的一个method对应的方法:

 

public ActionForward getAllWBGYXX(ActionMapping mapping, ActionForm form,			HttpServletRequest request, HttpServletResponse response)			throws Exception {				List
WBGYList = new ArrayList
(); HttpSession session = request.getSession(); FgyjdaRsQxYh user = (FgyjdaRsQxYh)session.getAttribute("user"); int qx = (Integer)session.getAttribute("qx"); String param =""; if(qx==3){//本人 param =" where LRRZYBM='"+user.getZybm()+"'"; }else if(qx==6){//本部门 param =" where LRRBMDM="+user.getBmdm()+" and fydm="+user.getFydm(); } WBGYList = wbgyServer.getAllWBGY(param); if(XXX){ request.setAttribute("WBGYList", WBGYList); return mapping.findForward("WBGYList"); }else{ return mapping.findForward("error"); } }

 

4.需要添加相应的方法只需要增加相应的method方法,转发url的name,根据name重新跳转页面:

public ActionForward getAllWBGYXX(ActionMapping mapping, ActionForm form,			HttpServletRequest request, HttpServletResponse response){	//业务处理	return mapping.findForward("xxx");}

 5.相关跳转的信息在struts.xml中配置。

转载于:https://my.oschina.net/itommy/blog/844544

你可能感兴趣的文章
CSS3 3D翻转动画
查看>>
要命啦!Word中快速录入大全,内含快捷键小技巧,快来一起学习!
查看>>
javascript实现音频mp3播放
查看>>
html5-离线缓存
查看>>
linux系统安装完后的常见工作
查看>>
在Linux服务器、客户端中构建密钥对验证进行远程连接
查看>>
和“C”的再遇
查看>>
一键安装kubernetes 1.13.0 集群
查看>>
RabbitMq的集群搭建
查看>>
spring boot + mybatis 同时访问多数据源
查看>>
URL中汉字转码
查看>>
[转]go正则实例
查看>>
Selector中关于顺序的注意事项
查看>>
小黑小波比.清空<div>标签内容
查看>>
Java中的ExceptionInInitializerError异常及解决方法
查看>>
Spring 注入bean时的初始化和销毁操作
查看>>
java线程同步原理(lock,synchronized)
查看>>
yRadio以及其它
查看>>
闪迪(SanDisk)U盘防伪查询(官方网站)
查看>>
无锁数据结构
查看>>