loginConverter.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'loginConverter.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<s:form action="loginConverterAction">
<table>
<caption><b>用户登录(用户名和密码用英文冒号分隔)</b></caption>
<tr>
<td>请输入用户信息:</td>
<td><s:textfield name="carUser" style="width:250px"></s:textfield></td>
</tr>
<tr>
<td></td>
<td><s:submit value="登录" style="width:75px"></s:submit></td>
</tr>
</table>
</s:form>
</body>
</html>
RegistAction.java
package hp.epm.ssh.app.register;
import hp.epm.ssh.app.bean.CarUser;
import com.opensymphony.xwork2.ActionSupport;
public class RegistAction extends ActionSupport{
/**
*
*/
private static final long serialVersionUID = 1L;
private CarUser carUser;
public CarUser getCarUser() {
return carUser;
}
public void setCarUser(CarUser carUser) {
this.carUser = carUser;
}
public String execute(){
System.out.println(carUser);
return SUCCESS;
}
}
CarUser.java
package hp.epm.ssh.app.bean;
import java.util.HashSet;
import java.util.Set;
public class CarUser {
private Integer userId;
private String userName;
private String userPassword;
private String userTelephone;
private String trueName;
private String idCard;
private String address;
private String email;
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserPassword() {
return userPassword;
}
public void setUserPassword(String userPassword) {
this.userPassword = userPassword;
}
public String getUserTelephone() {
return userTelephone;
}
public void setUserTelephone(String userTelephone) {
this.userTelephone = userTelephone;
}
public String getTrueName() {
return trueName;
}
public void setTrueName(String trueName) {
this.trueName = trueName;
}
public String getIdCard() {
return idCard;
}
public void setIdCard(String idCard) {
this.idCard = idCard;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
@Override
public String toString() {
return "CarUser [userId=" + userId + ", userName=" + userName
+ ", userPassword=" + userPassword + ", userTelephone="
+ userTelephone + ", trueName=" + trueName + ", address="
+ address + ", email=" + email + "]";
}
}
RegistAction-conversion.properties
carUser=hp.epm.ssh.converter.UserTypeConverter
converterResult.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'welcomeConverter.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
您的登录信息为:<br>
<s:property value="carUser"/>
</body>
</html>
struts.xml
<action name="loginConverterAction" class="hp.epm.ssh.app.register.RegistAction" >
<result name="success">/WEB-INF/Convert/converterResult.jsp</result>
</action>