浏览 2179 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-09-26
File->new->others,打开新建向导对话框,在树中找到web->Dynamic Web Project,选中,点击next按钮。在projects name中输入dodotest,点击next。保持默认设置,点击finished。这时,我们在eclipse中会看到新建的工程dodotest,创建完成。 2、修改web.xml文件: 内容如下 <?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> <display-name> dodotest</display-name> <filter> <filter-name>struts2</filter-name> <filter-class> org.apache.struts2.dispatcher.FilterDispatcher </filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app> 3、编写类代码: 3.1 HelloWorld.java 先写一个父类 package com.yeepal.test; public class HelloWorld { private String words; public String getWords() { return words; } public void setWords(String words) { this.words = words; } } 3.2 HelloAction.java 再写一个子类 package com.yeepal.test; import com.opensymphony.xwork2.ActionSupport; import com.yeepal.test.HelloWorld; public class HelloAction extends ActionSupport { private static final long serialVersionUID = 1L; private HelloWorld helloWorld; public HelloWorld getHelloWorld() { return helloWorld; } public void setHelloWorld(HelloWorld helloWorld) { this.helloWorld = helloWorld; } @Override public String execute() { return SUCCESS; } } 注:这里分成两个类来写,是为了顺便实践一下类的继承,而不是必须的,只写一个类也是可以的。 4、加载相应的包: 写完上面的类,会发现有些错误,主要是因为我们这里使用了STRUTS及一些相应的lib文件,而这些文件我们还没添加到项目里,所以下一步我们就来添加这些lib,本次要使用到的lib文件包括4个,分别是:struts2-core-2.0.9.jar、freemarker-2.3.8.jar、 ognl-2.6.11.jar、xwork-2.0.4.jar,千万不要一下子就把所有的struts里面的lib文件全部拿过来用,反而会出错。 把这写文件放到 dodotest\WebContent\WEB-INF\lib 目录下,在eclipse中右击项目名称,选择properties,在新的属性对话框里,选择java Build Path,然后再右侧的对话框里选择Libraries标签,然后是右边的“Add External JARs…,找到刚才那4个lib文件,全选,再点“打开”,这样,这4个lib文件就被添加到了项目中,这时候你会发现刚才的那些错误消失了。 5、现在我们来写struts.xml文件: 在src目录下新建XML文件,命名为struts.xml,内容如下: <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <include file="struts-default.xml" /> <package name="default" extends="struts-default"> <action name="hello" class="com.yeepal.test.HelloAction"> <result name="success">success.jsp</result> <result name="input">index.jsp</result> </action> </package> </struts> 6、编写JSP文件: 下面我们来写两个JSP文件,新建JSP文件,默认情况下新建的文件路径是WebContent下,不需要修改。 <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>你好,世界</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> </head> <body> <form action="hello.action" method="post"> <fieldset><legend>Struts2入门实例</legend> <p><label>请输入你想说的话:</label> <input type="text" name="helloWorld.words" value="试试看!" /></p> <p><input type="submit" value="提交" /></p> </fieldset> </form> </body> </html> 接着是success.jsp文件 <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>成功啦</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> </head> <body> 您所输入的文字是:${helloWorld.words} <br> </body> </html> 7、运行: 好了好了,搞这么久,太阳都要下山了,差不多可以运行了,在eclipse总右击项目名称,找到export-->WAR file。在对话框中选择刚才做的那个项目,输出路径为tomcat的webapps目录下。到处完成后,运行tomcat 吧,然后打开浏览器,输入http://localhost:8080/dodotest/,可能要多刷新记下,因为tomcat还在解war包。传说有些人能正常访问,也就是说成功,但有些人会提示错误,在日志里看,错误代码是:警告: Settings: Could not parse struts.locale setting, substituting default VM locale,问题不大,只是警告而已,又不罚款,我们在src目录下创建一个文件,文件名叫struts.properties,内容是:”struts.locale=en_GB“,仅此一句话就OK了。然后重新导出重新运行看看,99.99999999%能成功运行,如果还不能成功允许,那就去烧香吧。 8、搞定收工。 代码到这里下载吧. 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |