在的struts-config我有這樣的動作:的Struts-config.xml配置映射
<action
path="/action/basket"
type="com.xxx.BasketAction"
name="basketForm"
scope="session"
unknown="false"
validate="false"
>
<forward
name="displayItems"
path="EshelfItems"
redirect="false"
/>
<forward
name="displayItems-redirect"
path="/action/basket.do?fn=display"
redirect="true"
/>
<forward
name="displayBasket"
path="/basket.jsp"
redirect="false"
/>
</action>
我在哪裏可以找到/action/basket.do?fn=display
映射?
不確定你的意思。前面的'displayItems-redirect'應該在'com.xxx.BasketAction'的某處找到... – home