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