📄 registeraction.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.eonline.controller;import javax.servlet.*;import javax.servlet.http.*;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;import org.apache.struts.action.ActionForward;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionMessage;import org.apache.struts.action.ActionMessages;import com.eonline.view.RegisterForm;import com.eonline.model.*;import demo.LoginSessionRemote;import javax.naming.InitialContext;/** * * @author Administrator */public class RegisterAction extends org.apache.struts.action.Action { /* forward name="success" path="" */ private final static String SUCCESS = "success"; private String username; private String password; /** * This is the action called from the Struts framework. * @param mapping The ActionMapping used to select this instance. * @param form The optional ActionForm bean for this request. * @param request The HTTP Request we are processing. * @param response The HTTP Response we are processing. * @throws java.lang.Exception * @return */ public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {// if((User)request.getSession().getAttribute("userItem")==null){// return mapping.findForward("welcome");// } ServletContext context = getServlet().getServletContext(); ActionMessages errors = new ActionMessages(); saveErrors(request, errors); try { RegisterForm myForm = (RegisterForm) form; InitialContext ctx = new InitialContext(); LoginSessionRemote user = (LoginSessionRemote)ctx.lookup(LoginSessionRemote.class.getName()); user.LoginSessionBean(username, password); Euser userItem = user.addUser(myForm.getUsername(), myForm.getPassword()); //request.setAttribute("userItem", userItem); return mapping.findForward(SUCCESS); } catch (RuntimeException e) { context.log("An unexpected error: ", e); errors.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("error.unexpectedError", e.getMessage())); return mapping.findForward("error"); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -