首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

struts请求访问拾掇

2012-09-03 
struts请求访问整理struts action配置!-- muytest 模块 --package namemytest extendsbasePackage

struts请求访问整理
struts action配置

<!-- muytest 模块 -->
<package name="mytest" extends="basePackage" namespace="/mytest/">

</package>


------------MytestAction.java------
@ParentPackage("mytest")
public class MytestAction extends BaseSellerAction {

private static final long serialVersionUID = 939524238617902820L;

public String test(){
return SUCCESS;
}


}

====================================
BaseSellerAction  继承于ActionSupport



通过url访问
http://www.xxxx.com:8081/mytest/mytest!test.action


AlipayPayMoneyReturnAction.java中大写字母修改为下划线加小写的格式.
http://www.shougongfang.com:8081/paymoney/alipay_pay_money_return!alipayReturn.action

热点排行