快速业务通道

为Struts 2.0做好准备 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16
     "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts>    <includefile="struts-default.xml"/> </struts>

新建index.html文件

右键点击Struts2_HelloWorld\WebContent,出现如图10所示的菜单

为Struts 2.0做好准备 - 编程入门网

图10 新建Other菜单

点击“Other”,出现新建对话框,如图11所示

为Struts 2.0做好准备 - 编程入门网

图11 新建对话框

选择Web\HTML,点击“Next”出现如图12所示的对话框

为Struts 2.0做好准备 - 编程入门网

图12 新建HTML页面对话框

为Struts 2.0做好准备(6)

时间:2011-06-25 BlogJava Max

在“File Name”中键入index.html,点击“Next”,出现如图13所示的对话框

为Struts 2.0做好准备 - 编程入门网

图13 模板选择对话框

点击“Finish”,将index.html的内容修改为以下内容:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Hello World</title> </head> <body> <h3>Hello World!</h3> </body> </html>

将应用程序打包到tomcat上

右键点击Struts_HelloWorld,出现如图14所示的菜单

为Struts 2.0做好准备 - 编程入门网

图14 工程菜单

为Struts 2.0做好准备(7)

时间:2011-06-25 BlogJava Max

点击“Export\WAR file”,出现如图15所示的对话框

为Struts 2.0做好准备 - 编程入门网

图15 输出对话框

选择“Web\WAR file”,点击“Next”,出现如图16所示的对话框

为Struts 2.0做好准备 - 编程入门网

图16 输出路径对话框

输入war文件的路径(如%tomcat%\webapps\Struts2_HelloWorld.war),点击“Finish”关闭对话框。

启动tomcat,运行应用程序

打开你的Internet Explorer,键入http://localhost:8080/Struts2_HelloWorld/,窗口输出如图17所示

为Struts 2.0做好准备 - 编程入门网

图17 Hello World窗口

为Struts 2.0做好准备(8)

时间:2011-06-25 BlogJava Max

第一个Struts 2.0应用程序——Hello World

新建类包(package)

右键点击Struts2_HelloWorld\Java Resources: src,出现如图18所示菜单

为Struts 2.0做好准备 - 编程入门网

图18 新建菜单"

点击“New\Package”,出现如图19所示对话框

为Struts 2.0做好准备 - 编程入门网

图19新建Java类包对话框

在“Name”键入tutorial,点击“Finish”关闭对话框。

新建HelloWorld.java文件

右键点击Struts2_HelloWorld\Java Resources: src\tutorial,出现如图20所示菜单

为Struts 2.0做好准备 - 编程入门网

图20 新建菜单

为Struts 2.0做好准备(9)

时间:2011-06-25 BlogJava Max

点击“New\Class”,出现如图21所示对话框

为Struts 2.0做好准备 - 编程入门网

图21 新建Java类对话框

在“Name”中键入HelloWorld,在“Superclass”中键入com.opensymphony.xwork2.ActionSupport,点击“Finish”关闭对话框。将HelloWorld.java的内容修改为:

package tutorial; import com.opensymphony.xwork2.ActionSupport; public class HelloWorld extends ActionSupport {    private String name;    public String getName() {      return name;    }    public void setName(String name) {      this.name = name;    }    public String execute() {      name = "Hello, " + name + "!";      return SUCCESS;    } }

在struts.xml中添加action映射(mapping)

<!DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
        "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
    <incl

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号