actionform验证方法_form里面的action写什么「建议收藏」

actionform验证方法_form里面的action写什么「建议收藏」鄙人一点对struts1.2中ActionForm的理解初学struts的人我认为首先应该把struts1.2学精,何为精,就是明白struts的控制流程以及它核心API的实现原理(比如Action/Dispatch

actionform验证方法_form里面的action写什么「建议收藏」

鄙人一点struts1.2中ActionForm的理解

初学struts的人我认为首先应该struts1.2学精,何精,就是明白struts的控制流程以及它核心API的实现原理(比如 Action/DispatchAction/MappingDispatchAction/LookupDispatchAction /ActionForm的实现原理)然后自己会写一个“山寨版”的struts1.2,只有到达这样的程度你才能深刻体会struts1.2的MVC,也 才明你学会了struts1.2,当你再学struts2.0的候会非常的容易,那struts1.2的关键就是能 ActionForm,在此我把自己学struts1.2ActionForm的使用及其实现原理出来晒一晒,望各位不要笑,些意

 

ActionForm的
(一)、ActionForm的特性
1.
建一个form须继承于四个父中的一个,要么继ActionForm,要么继ValidatorForm,要么继ValidatorActionForm,要么继
2.一个form
中的一个属性都将和面中form表中的一个表元素一一对应
Example:
一个表
单为:
<form>
 <input type=”text” name=”username”></input>
 <input type=”password” name=”password”></input>
 <input type=”text” name=”email”></input>
</form>
一个与之
对应form
public class UserForm extends ActionForm{

  private String username;
  private String password;
  private String email;
  private String address;
  
  //下面省略getter和setter方法
}
一个引用了
formappAction:
<form-beans>
 <form-bean name=”userForm” type=”form.UserForm”></form-bean>
</form-beans>
<action-mappings>
<action path=”/test” type=”action.TestAction” name=”userForm” attribute=”uf” scope=”request”></action>
</action-mappings>
3.在引用了form-bean的action中name属性的
就是form-bean中name的
4.
userForm默会被放在session中,使用scope可以指定存储该form象的地方,自然attribute就是用来存放在中的form象起的,如果不attribute
属性那
attribute默的就使用name的
(二)、普通HTML表
使用Form的工作原理
ActionServlet

今天的文章actionform验证方法_form里面的action写什么「建议收藏」分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/71379.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注