0
点赞
收藏
分享

微信扫一扫

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

举报

相关推荐

0 条评论