关于struts2的一些问题!
<packagename="struts2_30"extends="struts-default"namespace="/product"><global-results...
<package name="struts2_30" extends="struts-default" namespace="/product">
<global-results>
<result name="success">/${target}</result>
<result name="input">/${target}</result>
<result name="error">/${target}</result>
<result name="success_chain" type="chain">${target}</result>
</global-results>
<action name="*_*" class="com.accp.shopping.action.{1}Action"
method="{2}" />
</package>
这是我配置的struts.xml
public String updateProduct() throws Exception {
pdao.updateProduct(productid,quantity);
target = "Product_queryProduct";
return "success_chain";
}
这是一个action类的某个方法
我现在想在上面这个方法通过返回字符串success_chain然后到该action类中的另外的一个方法中去!但总是报错,错误是:
There is no Action mapped for namespace [/product] and action name [/product/Product_queryProduct] associated with context path [/struts2_chain]. - [unknown location]
求高手解答! 展开
<global-results>
<result name="success">/${target}</result>
<result name="input">/${target}</result>
<result name="error">/${target}</result>
<result name="success_chain" type="chain">${target}</result>
</global-results>
<action name="*_*" class="com.accp.shopping.action.{1}Action"
method="{2}" />
</package>
这是我配置的struts.xml
public String updateProduct() throws Exception {
pdao.updateProduct(productid,quantity);
target = "Product_queryProduct";
return "success_chain";
}
这是一个action类的某个方法
我现在想在上面这个方法通过返回字符串success_chain然后到该action类中的另外的一个方法中去!但总是报错,错误是:
There is no Action mapped for namespace [/product] and action name [/product/Product_queryProduct] associated with context path [/struts2_chain]. - [unknown location]
求高手解答! 展开
3个回答
展开全部
target = "Product_queryProduct";中Product_queryProduct改为Product_queryProduct.action
type="chain"中chain改为redirect试试
type="chain"中chain改为redirect试试
追问
我就是要用chain啊 大哥- -!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
意思就是/product 命名空间下找不到Product_queryProduct这个action
更多追问追答
追问
我也知道是这个意思!但是想不到解决方案!我的product命名空间下是有Product这个action的
该action中也有queryProduct这个方法!你看下我的struts.xml文件就知道了!
追答
如果确定com.accp.shopping.action这个包中有名为ProductAction的Action类 且其中有queryProduct方法
那你试试看不用通配符 直接将Product_queryProduct 这个Action 配好
不行再试试 不用global-results,为updateProduct方法的Action 直接配result
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<result name="success_chain" type="chain">=/product/${target}</result>
追问
不行!还是报告同样的错误!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询