- 论坛徽章:
- 0
|
请教关于weblogic+struts的问题
login.jsp:
<%@ page contentType="text/html; charset=gb2312" %>;
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>;
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>;
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>;
<html:html locale="true">;
<head>;
<title>;用户登录</title>;
<meta http-equiv="Content-Type" content="text/html;">;
<link rel="stylesheet" href="../css/css.css" type="text/css">;
</head>;
<body bgcolor="#ffffff">;
<logic:notPresent name="org.apache.struts.action.MESSAGE" scope="application">;
<font color="red">;
ERROR: Application resources not loaded -- check servlet container
logs for error messages.
</font>;
</logic:notPresent>;
<table>;
<tr>;
<td>;<jsp:include page="/family/loginbody.jsp" />;</td>;
</tr>;
</table>;
</body>;
</html:html>;
loginbody.jsp:
<%@ page contentType="text/html; charset=gb2312" %>;
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>;
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>;
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>;
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="9p" align="center">;
<tr>;
<td>;
<logic:equal parameter="loginerror" property ="loginerror" name="LoginForm" value="true" scope="request" >;
<font color="#FF0000">;<bean:message key="login.loginerror"/>;</font>;
</logic:equal>;
<font color="#FF0000">;<html:errors/>;</font>;
</td>;
</tr>;
<tr>;
<td>;<table width="531" height="284" border="0" cellpadding="0" cellspacing="0" background="../image/login/dengru.jpg">;
<tr valign="top">;
<td height="125" colspan="3">;<table width="531" border="0" cellspacing="0" cellpadding="0">;
<tr>;
<td colspan="4">;&</td>;
</tr>;
<tr>;
<td colspan="4">;&</td>;
</tr>;
<tr>;
<td width="292" height="21">;&</td>;
<td width="111">;<font color="#FF0000">;还不是会员?</font>;</td>;
<td width="74">;<a style="cursor:pointer; cursor:hand" onclick='javascript:window.open("../family/agreement.jsp","我要注册","scrollbars=yes,height=550,width=518,left=200,top=20" 'target="_blank">;<img src="../image/login/add.jpg" border="0">;</a>;</td>;
<td width="54">;&</td>;
</tr>;
<tr>;
<td colspan="4">;&</td>;
</tr>;
</table>;</td>;
</tr>;
<tr>;
<td width="252" height="155">;&</td>;
<td width="248" valign="top">;<table width="100%" border="0" cellspacing="0" cellpadding="0" class="9p">;
<tr>;
<td>;
<html:form method="post" action="/login.do" focus="username" name="LoginForm" type="com.sunhoo.fundsite.family.LoginForm" scope="request">;
<html:hidden property ="firstflg" value ="OK"/>;
<html:hidden property ="loginerror" value=""/>;
<table width="100%" border="0" cellspacing="0" cellpadding="5" class="9p">;
<tr>;
<td width="42%" height="22" align = right nowrap>;&&<font color="336699">;用户名</font>;</td>;
<td>;
<html:text property="username" style="border: 1 solid #000000;hight:2px" size="20" maxlength="20"/>;
</td>;
</tr>;
<tr>;
<td height="19" align = right nowrap>;&&<font color="336699">;密码</font>;</td>;
<td>;
<html:password property="password" style="border: 1 solid #000000;hight:2px" size="20" maxlength="15"/>;
</td>;
</tr>;
<tr>;
<td width="42%" height="22" align = right nowrap>;&&<font color="336699">;登录类型</font>;</td>;
<td>;
<html:select property="logintype" style="hight:5px" >;
<OPTION value="1" >;用户名</OPTION>;
<OPTION value="2" >;客服号</OPTION>;
<OPTION value="3" >;基金帐号</OPTION>;
</html:select>;
</td>;
</tr>;
<tr>;
<td colspan="2">;<div align="center">;
<html:submit property="login" style="border: 1 solid #000000;hight:2px" value="登 录" />;
&&&&<a style="cursor:pointer; cursor:hand" onclick='javascript:window.open("/family/forpwd.jsp","忘记密码","scrollbars=yes,height=550,width=518,left=200,top=20" 'target="_blank">;忘记密码</a>;</div>;</td>;
</tr>;
</table>;
</html:form>;
</td>;
</tr>;
</table>;</td>;
<td width="31" valign="top">;&</td>;
</tr>;
</table>;</td>;
</tr>;
</table>;
login.form:
package com.sunhoo.fundsite.family;
import javax.servlet.http.*;
import org.apache.struts.action.*;
import com.sunhoo.esp.*;
import com.sunhoo.esp.utils.Logger;
import java.util.*;
import com.sunhoo.esp.user.*;
import com.sunhoo.fundsite.family.register.*;
import com.sunhoo.fundsite.family.common.*;
/**
* @author wujl
*
* < >;用户登录用 FORM CLASS</P>;
*/
public final class LoginForm extends ActionForm {
/**
* 登录用户类型
*/
private String logintype = null;
/**
* 登录用户名
*/
private String username = null;
/**
* 登录用户密码
*/
private String password = null;
/**
* 登录成功标记
*/
private String secussful = null;
/**
* 登录失败标记
*/
private boolean loginerror = false;
/**
* 检查成功与否标记
*/
private boolean checkflg = true;
/**
* SUBMIT提交标记
*/
private String firstflg = null;
/**
* Returns the password.
* @return String
*/
public String getPassword() {
return password;
}
/**
* Returns the username.
* @return String
*/
public String getUsername() {
return username;
}
/**
* Sets the password.
* @param password The password to set
*/
public void setPassword(String password) {
this.password = password;
}
/**
* Sets the username.
* @param username The username to set
*/
public void setUsername(String username) {
this.username = username;
}
/**
* Returns the secussful.
* @return String
*/
public String getSecussful() {
return secussful;
}
/**
* Sets the secussful.
* @param secussful The secussful to set
*/
public void setSecussful(String secussful) {
this.secussful = secussful;
}
/**
* Returns the checkflg.
* @return boolean
*/
public boolean isCheckflg() {
if (username == null
|| ("" .equals(username)
|| password == null
|| ("" .equals(password)) {
return false;
}
return checkflg;
}
/**
* Sets the checkflg.
* @param checkflg The checkflg to set
*/
public void setCheckflg(boolean checkflg) {
this.checkflg = checkflg;
}
/**
* 对页面提交的内容进行错误检查
* @param mapping ActionMapping
* @param request HttpServletRequest
* @return ActionErrors 错误的ActionErrors对象
*/
public ActionErrors validate(
ActionMapping mapping,
HttpServletRequest request) {
//声明存放错误的ActionErrors对象
ActionErrors errors = new ActionErrors();
if (firstflg == null || ("" .equals(firstflg)) {
setCheckflg(false);
return errors;
}
//用户名检查
if (username == null || ("" .equals(username)) {
errors.add(
"username",
new ActionError("error.username.required" );
}
//用户密码检查
if (password == null || ("" .equals(password)) {
errors.add(
"password",
new ActionError("error.password.required" );
}
if (errors.size() >; 0) {
setCheckflg(false);
}
return errors;
}
/**
* Returns the firstflg.
* @return String
*/
public String getFirstflg() {
return firstflg;
}
/**
* Sets the firstflg.
* @param firstflg The firstflg to set
*/
public void setFirstflg(String firstflg) {
this.firstflg = firstflg;
}
/**
* Returns the loginerror.
* @return boolean
*/
public boolean getLoginerror() {
return loginerror;
}
/**
* Sets the loginerror.
* @param loginerror The loginerror to set
*/
public void setLoginerror(boolean loginerror) {
this.loginerror = loginerror;
}
/**
* Returns the logintype.
* @return String
*/
public String getLogintype() {
return logintype;
}
/**
* Sets the logintype.
* @param logintype The logintype to set
*/
public void setLogintype(String logintype) {
this.logintype = logintype;
}
}
loginAction.java:
package com.sunhoo.fundsite.family;
import javax.servlet.http.*;
import org.apache.struts.action.*;
import com.sunhoo.esp.*;
import com.sunhoo.esp.utils.Logger;
import java.util.*;
import com.sunhoo.esp.user.*;
import com.sunhoo.fundsite.family.register.*;
import com.sunhoo.fundsite.family.common.*;
/**
* @author wujl
* < >;用户登录用 ACTION CLASS</P>;
*
*/
public final class LoginAction extends Action {
/**
* 对画面提交的信息进行业务处理
* @param mapping ActionMapping
* @param form 登录 FORM CLASS
* @param request HttpServletRequest
* @param response HttpServletResponse
* @return ActionForward 定向类
*/
public ActionForward perform(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) {
Authorization auth = null;
LoginForm loginForm = null;
String jspPage = null;
try {
HttpSession session = request.getSession();
//取得用户权限
auth = (Authorization) session.getAttribute("Authorization" ;
SystemFactory factory = SystemFactory.getInstance(auth);
System.out.println("------LoginAction Start------");
//取得栏目
Category category = null;
try {
category = factory.getCategory("MyFunds");
} catch (CategoryNotFoundException e) {
}
if (form instanceof LoginForm) {
loginForm = (LoginForm) form;
if (loginForm.isCheckflg()) {
try {
jspPage = "success";
if ("1".equals(loginForm.getLogintype())) { //用户名登录
auth =
AuthFactory.getAuthByName(
loginForm.getUsername(),
loginForm.getPassword());
} else if ("2".equals(loginForm.getLogintype())) { //客服号登录
auth =
AuthFactory.getAuthByCustomerNo(
loginForm.getUsername(),
loginForm.getPassword());
} else if ("3".equals(loginForm.getLogintype())) { //基金帐号登录
auth =
AuthFactory.getAuthByTAAccount(
loginForm.getUsername(),
loginForm.getPassword());
jspPage = "ataccount";
}
//为非注册用户跳到登录画面
if (auth.isAnonymous()) {
loginForm.setLoginerror(true);
jspPage = "gotologin";
} else {
//取得客户相关信息
CustomerManager customerManager =
CustomerManager.getInstance(auth);
Customer customer =
customerManager.getCustomer(
auth.getCustomerNo());
session.setAttribute("Authorization", auth);
System.out.println(
"------Authorization=" + auth.getCustomerNo());
session.setAttribute("Customer", customer);
loginForm.setSecussful("secussful");
}
} catch (Exception e) {
jspPage = "gotologin";
loginForm.setSecussful("");
loginForm.setLoginerror(true);
}
} else {
if (loginForm.getFirstflg() == null) {
loginForm.setLoginerror(false);
} else {
loginForm.setLoginerror(true);
}
jspPage = "gotologin";
}
System.out.println("------LoginAction End------");
request.setAttribute("LoginForm", loginForm);
session.setAttribute("Category", category);
}
} catch (Exception eee) {
Logger.println("Error: " + eee.getMessage());
loginForm.setLoginerror(true);
jspPage = "gotologin";
}
// "success"转移到显示提交信息的画面
// (struts-config.xml记载)
return (mapping.findForward(jspPage));
}
} |
|