DEVFYI - Developer Resource - FYI

Write code of any Action Class?

Struts Questions and Answers


(Continued from previous question...)

83. Write code of any Action Class?

Here is the code of Action Class that returns the ActionForward object.
package j2eeonline.jdj.com;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
public class TestAction extends Action{

public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception{
return mapping.findForward("testAction");
}
}

(Continued on next question...)

Other Interview Questions