📄 edituserpassaction.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.eatery.user.action;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionError;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import com.eatery.po.UserInfo;
import com.eatery.service.UserInfoService;
import com.eatery.util.MD5;
public class EditUserPassAction extends Action {
private UserInfoService service;
public UserInfoService getService() {
return service;
}
public void setService(UserInfoService service) {
this.service = service;
}
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
String oldpass=request.getParameter("oldUserPass");
MD5 md5=new MD5();
UserInfo userinfo=(UserInfo) request.getSession().getAttribute("USERINFO");
userinfo=service.findUserInfo(userinfo.getUId());
//判断旧密码是否正确
if(!md5.getMD5ofStr(oldpass).equals(userinfo.getUPass())){
ActionErrors ae=new ActionErrors();
ae.add("pass",new ActionError("passerror"));
saveErrors(request, ae);
return mapping.getInputForward();
}
String newpass=request.getParameter("newUserPass");
userinfo.setUPass(md5.getMD5ofStr(newpass));
request.getSession().setAttribute("USERINFO",userinfo);
service.editUserInfo(userinfo);
return mapping.findForward("toMemberCenter");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -