我希望将我的login.jsp
页面中的长值作为隐藏字段从 bean 发送到 struts 操作。我已经完成了用户名和密码这两个属性的映射等,对他们来说,程序运行良好。现在我想发送一个时间值作为名为“requesttime”的隐藏属性,以将登录时间存储在表中以进行安全检查。但我一直无法弄清楚如何做到这一点。这是我卡住的jsp页面的一部分。
<%long time = System.currentTimeMillis();%>
<html:form action="login">
<bean:message key="login.username"/>
<html:text property="username"/><br/>
<bean:message key="login.password"/>
<html:password property="password"/><br/>
<%--I wish to insert "time" as property "requesttime" as hidden here--%>
<html:submit value="login"/>
</html:form><hr/>
<html:errors/>
请不要介意我的无知。感谢您提供的任何帮助。