I am trying to migrate an application from Struts 1 to Struts 2. In the migration process, I am facing the following issues:
There is a
Servlet
which extendsActionServlet
of Struts1. There are many overriden methods where bysuper
is being called likeprocess()
, I would like to know its equivalent to convert to Struts2. As I am not getting its equivalent inStrutsPrepareAndExecuteFilter
.I have converted all the form beans into
ModelDriven
beans and all theAction
s to a class extendingActionSupport
. Also made entry instruts.xml
for it.
Please provide your silutions on the above two issues.