分享
 
 
 

Struts的动态表单的应用

王朝other·作者佚名  2006-12-16
窄屏简体版  字體: |||超大  

这篇文章以实例代码来阐述Dynaforms在struts1.1种的引用??译者注

如果你使用过struts先前的版本,你就会注意到你需要花费大量的时候来写ActionForm类文件,而这些类文件对于struts都是非常关键的(它充当“View”的一部分),通常它的结构就是bean properties在加上一个validate方法(有时还有reset方法)。

随着struts1.1版本的推出,开发员有了另外一种方法来完成前面的任务:使用DynaBeans。DynaBeans动态生成Java Beans。这就意味着我们可以通过配置(通常利用xml)

来生成formbean而不是在formbean中硬编码。

为了了解DynaBeans(struts中为Dynaforms)是如何工做的,让我们看一个简单的表单,字段有:name,address,telephone等,下面的代码为通常的写法(没有使用Dynaforms)。

article1.CustomerForm

package article1;

import org.apache.struts.action.ActionForm;

import org.apache.struts.action.ActionErrors;

import org.apache.struts.action.ActionMapping;

import org.apache.struts.action.ActionError;

import javax.servlet.http.HttpServletRequest;

public class CustomerForm extends ActionForm {

protected boolean nullOrBlank (String str) {

return ((str == null) || (str.length() == 0));

}

public ActionErrors validate(ActionMapping mapping,

HttpServletRequest request) {

ActionErrors errors = new ActionErrors();

if (nullOrBlank(lastName)) {

errors.add("lastName",

new ActionError("article1.lastName.missing"));

}

if (nullOrBlank(firstName)) {

errors.add("firstName",

new ActionError("article1.firstName.missing"));

}

if (nullOrBlank(street)) {

errors.add("street",

new ActionError("article1.street.missing"));

}

if (nullOrBlank(city)) {

errors.add("city",

new ActionError("article1.city.missing"));

}

if (nullOrBlank(state)) {

errors.add("state",

new ActionError("article1.state.missing"));

}

if (nullOrBlank(postalCode)) {

errors.add("postalCode",

new ActionError("article1.postalCode.missing"));

}

if (nullOrBlank(phone)) {

errors.add("phone",

new ActionError("article1.phone.missing"));

}

return errors;

}

private String lastName;

private String firstName;

private String street;

private String city;

private String state;

private String postalCode;

private String phone;

public String getLastName() {

return lastName;

}

public void setLastName(String lastName) {

this.lastName = lastName;

}

public String getFirstName() {

return firstName;

}

public void setFirstName(String firstName) {

this.firstName = firstName;

}

public String getStreet() {

return street;

}

public void setStreet(String street) {

this.street = street;

}

public String getCity() {

return city;

}

public void setCity(String city) {

this.city = city;

}

public String getState() {

return state;

}

public void setState(String state) {

this.state = state;

}

public String getPostalCode() {

return postalCode;

}

public void setPostalCode(String postalCode) {

this.postalCode = postalCode;

}

public String getPhone() {

return phone;

}

public void setPhone(String phone) {

this.phone = phone;

}

}

看到上边的写法(这么长一段代码[虽然大多的工具都可以自动生成set和get方法]感想如何?如果要为每一个表单配备一个formbean,那么将是一件多了令人痛苦的事情??译者注),你知道了它是一个标准的JavaBean,只是多了一个validate方法,validate方法确保client断的输入都是合法的。

相应的jsp页面同样也是很简单的,如下:

customer.jsp

<%@ taglib uri="/WEB-INF/c.tld" prefix="c" %>

<%@ taglib prefix="fmt" uri="/WEB-INF/fmt.tld" %>

<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>

<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>

<head>

<title>Example of a standard Customer form</title>

</head>

<h1>Example of a standard Customer form</h1>

<html:form action="/addCustomer">

Last Name: <html:text property="lastName"/>

<html:errors property="lastName" /><br>

First Name: <html:text property="firstName"/>

<html:errors property="firstName" /><br>

Street Addr: <html:text property="street"/>

<html:errors property="street" /><br>

City: <html:text property="city"/>

<html:errors property="city" /><br>

State: <html:text property="state" maxlength="2" size="2" />

<html:errors property="state" /><br>

Postal Code: <html:text property="postalCode" maxlength="5"

size="5" />

<html:errors property="postalCode" /><br>

Telephone: <html:text property="phone" maxlength="11" size="11" />

<html:errors property="phone" /><br>

<html:submit/>

</html:form>

相应的action也没有复杂的业务代码,只是将从client端传过来的值打印到控制台。

article1.AddCustomerAction

package article1;

import org.apache.struts.action.Action;

import org.apache.struts.action.ActionMapping;

import org.apache.struts.action.ActionForward;

import org.apache.struts.action.ActionForm;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import javax.servlet.ServletException;

import java.io.IOException;

public class AddCustomerAction extends Action {

public ActionForward execute(ActionMapping mapping,

ActionForm form,

HttpServletRequest request,

HttpServletResponse response)

throws ServletException, IOException{

CustomerForm custForm = (CustomerForm) form;

System.out.println("lastName = "

+ custForm.getLastName());

System.out.println("firstName = "

+ custForm.getFirstName());

System.out.println("street = " + custForm.getStreet());

System.out.println("city = " + custForm.getCity());

System.out.println("state = " + custForm.getState());

System.out.println("postalCode = "

+ custForm.getPostalCode());

System.out.println("phone = " + custForm.getPhone());

return mapping.findForward("success");

}

}

下面看看struts-config.xml的配置,struts利用该配置文件将上述文件联系到一起来协同完成任务。

<struts-config>

<form-beans>

<form-bean name="customerForm" type="jdj.article1.Customer" />

</form-beans>

<action-mappings>

<action path="/addCustomer" type="article1.AddCustomerAction"

name="customerForm" scope="request"

input="/addCustomer.jsp">

<forward name="success" path="/addCustomerSucceeded.jsp"

redirect="false" />

</action>

</action-mappings>

<message-resources parameter="ApplicationResources" />

<plug-in className="org.apache.struts.validator.ValidatorPlugIn">

<set-property value="/WEB-INF/validator-rules.xml"

property="pathnames" />

struts-config.xml</plug-in></struts-config>

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE struts-config PUBLIC

"-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"

"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">

<struts-config>

<form-beans>

<form-bean name="customerForm" type="article1.CustomerForm" />

</form-beans>

<action-mappings>

<action path="/addCustomer" type="article1.AddCustomerAction"

name="customerForm" scope="request" input="/customer.jsp">

<forward name="success" path="/addCustomerSucceeded.jsp"

redirect="false" />

</action>

</action-mappings>

<message-resources parameter="ApplicationResources" />

<plug-in clas

[1] [2] 下一页

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有