模型类Student

public class Student {

/**学生姓名*/

private String username;

/**密码*/

private String pwd;

....set  get方法...

}

在action 中

声明   private Student stu;


在jsp页面中


<s:form action="login.action" method="post">

<s:textfield name="stu.username" value="12345"></s:textfield>

<s:password name="stu.pwd"></s:password>

<s:submit value="提交"></s:submit>

</s:form>


显示输入的值

用户名:<s:property value="stu.username"/>

密码:<s:property value="stu.pwd"/>