分享
 
 
 

Eclipse开发struts完全指南二(全)

王朝other·作者佚名  2008-05-19
窄屏简体版  字體: |||超大  

5、创建form数据对象

打开File-new-package对话框,name中输入com.is.form,点击Finish按钮。在右边的Package

Explorer树中找到刚才创建的包,右键点击com.is.form包,菜单中的new-others,找到Amateras-struts-Struts Action Form,点击next,在对话框中name栏输入LoginForm,点击Finish按钮。

编辑LoginForm类的内容为:

package com.is.form;

import org.apache.struts.action.ActionForm;

public class LoginForm extends ActionForm

{

private static final long

serialVersionUID = 1L;

private String username = "";

private String password = "";

/**

* @return Returns the password.

*/

public String getPassword()

{

return password;

}

/**

* @param password The password to set.

*/

public void setPassword(String password)

{

this.password = password;

}

/**

* @return Returns the username.

*/

public String getUsername()

{

return username;

}

/**

* @param username The username to set.

*/

public void setUsername(String username)

{

this.username = username;

}

}

注意,这里的两个属性分别对应我们jsp中form中的两个输入控件的名称,为什么这样做,可以去看struts的帮助文档了,我就不详细说了,还有form类再写完属性后,get和set方法可以通过eclipse的source中的命令来自动生成,在右键菜单中,也不详细说了,去网上查资料吧,关于eclipse的使用有很多的文档。

七、安装Eclipse HTML Editor插件

解压缩tk.eclipse.plugin.htmleditor_1.6.7.zip包,然后将plugins目录拷贝至D:\eclipse目录下覆盖原文件夹即可。到此Eclipse HTML Editor插件安装完成。

八、安装StrutsIDE插件

解压缩tk.eclipse.plugin.struts_1.1.7.zip包,然后将plugins目录拷贝至D:\eclipse目录下覆盖原文件夹即可。

好了,到此StrutsIDE插件安装完成。

6、创建action对象

同创建form的过程相同,我们只是新建一个com.is.action包,同样的过程,打开新建向导,只是选择Struts Action,创建LoginAction.java类,均选默认值。我们编辑LoginAction为如下内容:

package com.is.action;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import org.apache.struts.action.Action;

import org.apache.struts.action.ActionForm;

import org.apache.struts.action.ActionForward;

import org.apache.struts.action.ActionMapping;

import com.is.form.LoginForm;

public class LoginAction extends Action

{

private static final long serialVersionUID = 1L;

public ActionForward execute

(ActionMapping mapping,

ActionForm form,

HttpServletRequest request,

HttpServletResponse response)

throws Exception {

// this line is here for when the

input page is upload-utf8.jsp,

// it sets the correct character

encoding for the response

String encoding = request.getCharacterEncoding();

if ((encoding != null) &&

(encoding.equalsIgnoreCase("GB2312")))

{

response.setContentType

("text/html; charset=GB2312");

} else {

response.setContentType

("text/html; charset=GBK");

}

try {

if (form instanceof LoginForm)

{

LoginForm theForm = (LoginForm) form;

if(theForm.getUsername().equals("user") &&

theForm.getPassword().equals("123456"))

{

return new ActionForward("/welcome.do?type=true");

}

else {

return new ActionForward("/welcome.do?type=false");

}

}

} catch (Exception e)

{

}

// this shouldn't happen in this example

return null;

}

}

注意这里是直接用ActionForward转向的,你也可以按照struts中提供的空白例程struts-blank.war中的做法进行转向,可以比较一下会有收获的。

7、创建登录成功页面

同创建index.jsp页面相同,我们创建welcome.jsp页面,均使用默认设置。并编辑其内容如下:

<%@page pageEncoding="GBK"

contentType="text/html;

charset=GBK" %

<html

<head

<meta http-equiv="Content-Type"

content="text/html;

charset=GBK"/

<title</title

</head

<body

<%

String type = request.getParameter("type");

if(type!=null&&type.equals("true")){

out.print("欢迎您的光临!");

}

else{

out.print("对不起,你输入的用户名或者密码错误!");

}

%

</body

</html

8、增加Struts-config.xml中的配置

添加formbean的配置,在和标签之间加入:

<form-bean

name="loginForm"

type="com.is.form.LoginForm"/

添加jsp文件的映射,在和标签之间加入:

<action

path="/index"

forward="/index.jsp"/

<action

path="/welcome"

forward="/welcome.jsp"/

添加action文件的映射,在和标签之间加入:

path="/logincheck"

type="com.is.action.LoginAction"

name="loginForm"

scope="request"

validate="true"/

修改后的struts-config.xml大致如下形式:

<?xml version="1.0"?

<!DOCTYPE struts-config PUBLIC "-

//Apache Software Foundation

//DTD Struts Configuration 1.2//EN"

"http://struts.apache.org/dtds

/struts-config_1_2.dtd"

<struts-config

<data-sources

</data-sources

<form-beans

<form-bean

name="loginForm"

type="com.is.form.LoginForm"/

</form-beans

<global-exceptions

</global-exceptions

<global-forwards

</global-forwards

<action-mappings

<action

path="/index"

forward="/index.jsp"/

<action

path="/welcome"

forward="/welcome.jsp"/

<action

path="/logincheck"

type="com.is.action.LoginAction"

name="loginForm"

scope="request"

validate="true"/

</action-mappings

<controller processorClass=

"org.apache.struts.tiles.TilesRequestProcessor"/

<message-resources parameter="MessageResources"/

<plug-in className=

"org.apache.struts.tiles.TilesPlugin"

<set-property property="definitions-config"

value="/WEB-INF/tiles-defs.xml"/

<set-property property="moduleAware" value="true"/

</plug-in

<plug-in className=

"org.apache.struts.validator.ValidatorPlugIn"

<set-property property="pathnames"

value="/WEB-INF/validator-rules.xml,

/WEB-INF/validation.xml"/

</plug-in

</struts-config

到此我们可以运行测试程序了。

9、运行测试程序

右键点击testweb工程根目录,点击菜单中的Tomcate project-update context definition,将工程部署进tomcat,成功后会提示操作成功。

点击菜单栏中的雄猫图标启动tomcat,然后在IE地址栏中输入http://localhost:8080/testweb/index.do,我们会看到index.jsp的页面内容。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
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- 王朝網路 版權所有