<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="LoginAction" method="post">
用户名:<input type="text" name="username" value="v3"><s:fielderror name="username"></s>
密码:<input type="password" name="password" value="loveDayDay">
书籍1:<input type="text" name="bookList[0].username" value="Java从入门到放弃">
书籍2:<input type="text" name="bookList[1].username" value="Struts2从入门到发疯">
年龄:<input type="text" name="age" value="10">
<input type="submit" value="提交" />
</form>
</body>
</html>