- 1、本文档共4页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
struts的四个action我日志
Hibernate 持久层操作:把数据库中的数据 转换成类,用类和数据联系起来,从而操作数据库中的数据!
----------------------------------------------------------------------------------------
1: Action 父类! 只能实现一种功能 默认方法 : execute(四个参数)
Jsp中:a href=./hu1.do展现一/astruts-config.xml中:(没有parameter参数)
action path=/zx name=dept type=action.DeptAction scope=request
forward name=deptview path=/dept.jsp/forward
/action
每个方法都需要些一个Action,所以不实用!
---------------------------------------------------------------------------------------
2: DispatchAction(是抽象类) 是 Action的子类 ,但是可以实现多个功能!!
Jsp中:a href=./hu2.do?m=cha展现二/astruts-config.xml中:
action path=/zx2 name=dept parameter=m type=dispatchaction.DeptAction scope=request
forward name=deptviewpath=/dept.jsp/forward
/action
Parameter:是参数 在jsp?m=”xxxxx” 中传参数 xxxxx是dispatchaction.DeptAction 要调用的方法的名字!
---------------------------------------------------------------------------------------
3: MappingDispatchAction(普通类) 是DispatchAction的子类! 也可以实现多个功能!!
Jsp中:a href=./hu3.do展现三/astruts-config.xml中:( parameter参数直接就是方法名)
action path=/zx3 name=dept parameter=getAllDepts type=mappingdispatchaction.DeptAction scope=request
forward name=deptview path=/dept.jsp/forward
/action
parameter=xxxx:xxxx指的是:action中的要调用的方法的名称!
---------------------------------------------------------------------------------------
4: LookupDispatchAction(抽象类) 是DispatchAction的子类! 也可以实现多个功能!!:用到了bean标签
Jsp中:
a href=./hu4.do?m=bean:message key=fangfa/展现四/astruts-config.xml中:
action path=/hu4 name=ww parameter=m type=lookupDispatchAction.LianxiAction
forward name=lianxi path=/zhanxian.jsp/forward
/action
ApplicationResources中:
fangfa=xxxxx; xxxxx是方法名称
action类中:
protected Map getKeyMethodMap() {
Map map = new HashMap();
map.put(fangfa, getQuan);
return map;
}
---------------------------------------------------------------------------------------
乱码转换:
建立的就是一个 通用类 ,它实现的是 Filter(过滤器) 接口!需要设置的是web.xml:
filter
filter-nameNewFilter/filter-name
filter-classutil.NewFilter/filter-class
/filt
文档评论(0)