アクションクラス

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 UserRegistAction extends Action{
	public ActionForward execute(ActionMapping mapping, ActionForm form,
	  HttpServletRequest request, HttpServletResponse response) {

		//フォームBean型でキャスト
		UserRegistForm registForm = (UserRegistForm)form;

		//処理
		//たとえばログイン成功かどうかなど。
		//それによってページ遷移を作る。
		//"success"はstruts-config.xmlに渡され、struts-config.xmlで遷移先のページを指定する
		if(){
			  return mapping.findForward("success");
		  }else{
			 return mapping.findForward("error");
		}
	}
}