I have requirement to migrate legacy (Struts 1) code to Struts2.
If there are multiple methods in same action class, can we configure them in single <action>
tag?
struts.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
<package name="default" extends="struts-default">
<action name="product"
class="com.ProductAction"
method="show">
<result name="success">welcome.jsp</result>
</action>
<action name="product"
class="com.ProductAction"
method="showErr">
<result name="error">error.jsp</result>
</action>
</package>
</struts>
Here, I have single action i.e. product
and single action class i.e. ProductAction
. So, can I configure both the methods (show
, showErr
) in single <action>
tag?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…