struts2.0

struts2.0
看了blogjava上max老师关于Struts2.0的文章,于是开始学习Struts2.0了。但是始终会出现问题。
我严格按照max老师的《 为Struts 2.0做好准备》中的方法,一步一步地建立了我的第一个Struts2.0的Project——Struts2_HelloWorld。

  1. 到Apache下载Struts 2.0包

    struts2.0_第1张图片

  2. 打开Eclipse 3.2新建Web工程

    点击菜单File\New\Project,出现如图1所示对话框
    struts2.0_第2张图片
    图1 新建工程对话框
    选择Web\Dynamic Web Project,点击“Next”,出现图2对话框

    struts2.0_第3张图片
    图2 新建动态Web工程对话框
    在“Project Name”中键入Struts2_HelloWorld,点击“New”,出现以下对话框

    struts2.0_第4张图片
    图3 新建服务器运行时对话框
    选择“Apache\Apache Tomat v5.5”,点击“Next”,出现以下对话框

    struts2.0_第5张图片
    图4新建服务器运行时对话框
    点击“Finish”,关闭对话框。

  3. 将Struts 2.0 lib下的jar文件加到工程的构建路径(build path)

    struts2.0_第6张图片
    图5 Struts 2.0的lib目录
    按ctr+a全选,复制,再转到Eclipse窗口,在“Project Explorer”子窗口中选中Struts2_HelloWorld\WebContent\WEB-INF\lib,然后粘贴。经过Eclipse自动刷新“Project Explorer”子窗口,刚才所粘贴的jar文件应该会出现在Struts2_HelloWorld\Java Resources: src\Libraries\Web App Libraries下,如图6所示:

    struts2.0_第7张图片
    图6 Project Explorer子窗口

  4. 打开web.xml文件,将其修改为以下代码:
    <? xml version="1.0" encoding="ISO-8859-1" ?>
    <! DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" >
    < web-app >
        
    < display-name > Struts 2.0 Hello World </ 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.html </ welcome-file >
        
    </ welcome-file-list >
    </ web-app >

     

  5. 新建struts.xml文件

    右键点击,Struts2_HelloWorld\Java Resources: src,出现如图7所示菜单
    struts2.0_第8张图片
    图7 新建Other菜单
    点击“Other”,出现新建对话框,如图8所示

    struts2.0_第9张图片
    图8 新建对话框
    点击“Next”,出现新建文件对话框,如图9所示

    struts2.0_第10张图片
    图9 新建文件对话框
    在“File name”中键入struts.xml,点击“Finish”,然后将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" />
    </ struts >

     

  6. 新建index.html文件

    右键点击Struts2_HelloWorld\WebContent,出现如图10所示的菜单
    struts2.0_第11张图片
    图10 新建Other菜单
    点击“Other”,出现新建对话框,如图11所示

    struts2.0_第12张图片
    图11 新建对话框
    选择Web\HTML,点击“Next”出现如图12所示的对话框

    struts2.0_第13张图片
    图12 新建HTML页面对话框
    在“File Name”中键入index.html,点击“Next”,出现如图13所示的对话框

    struts2.0_第14张图片
    图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 >

     

  7. 将应用程序打包到tomcat上

    右键点击Struts_HelloWorld,出现如图14所示的菜单
    struts2.0_第15张图片
    图14 工程菜单
    点击“Export\WAR file”,出现如图15所示的对话框

    struts2.0_第16张图片
    图15 输出对话框
    选择“Web\WAR file”,点击“Next”,出现如图16所示的对话框

    struts2.0_第17张图片
    图16 输出路径对话框
    输入war文件的路径(如%tomcat%\webapps\Struts2_HelloWorld.war),点击“Finish”关闭对话框。

  8. 启动tomcat,运行应用程序

    打开你的Internet Explorer,键入http://localhost:8080/Struts2_HelloWorld/,窗口输出如图17所示
    struts2.0_第18张图片
    图17 Hello World窗口

到目前为止,我还没用到Struts2.0的东西。但是就是这样简单的Hello World始终都无法顺利显示出来,都会出现HTTP Status 404错误。于是我用了几种方法去检查错误:
(1)按照上面max老师的方法将Project打包到Tomcat的webapps目录下。打开Internet Explorer,键入http://localhost:8080/Struts2_HelloWorld/,tomcat提示HTTP Status 404。
(2)在tomcat中建立虚拟目录<Context path="/Struts2_HelloWorld" docBase="F:\Struts2_HelloWorld\WebContent" debug="0" crossContext="true" reloadable="true"/>,然后打开Internet Explorer,键入http://localhost:8080/Struts2_HelloWorld/,tomcat提示HTTP Status 404。
(3)在第(2)中将WEB-INF\web.xml删除,然后打开Internet Explorer,键入http://localhost:8080/Struts2_HelloWorld/。这样我可以看到我的Hello Worle了,所以我怀疑是web.xml出了问题,但是我始终找不出来出了什么问题。我的web.xml和max老师的一模一样。

<? xml version="1.0" encoding="UTF-8" ?>
< web-app  id ="WebApp_9"  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 > Struts2_HelloWorld </ 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.html </ welcome-file >
    
</ welcome-file-list >

</ web-app >

 (4)最后将Project整个文件夹拷贝到tomcat的webapps目录下,并且没有将WEB-INF/web.xml删掉。打开Internet Explorer,键入 http://localhost:8080/Struts2_HelloWorld/WebContent,成功,只有这样才可以得到和max老师一样的结果。但是在做以下的步骤时又出现问题。
  1. 新建类包(package)

    右键点击Struts2_HelloWorld\Java Resources: src,出现如图18所示菜单
    struts2.0_第19张图片
    图18 新建菜单"
    点击“New\Package”,出现如图19所示对话框

    struts2.0_第20张图片
    图19新建Java类包对话框
    在“Name”键入tutorial,点击“Finish”关闭对话框。

  2. 新建HelloWorld.java文件

    右键点击Struts2_HelloWorld\Java Resources: src\tutorial,出现如图20所示菜单
    图20 新建菜单
    图20 新建菜单
    点击“New\Class”,出现如图21所示对话框

    struts2.0_第21张图片
    图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;
        }

    }

     

  3. 在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 >
        
    < include  file ="struts-default.xml" />
        
    < package  name ="tutorial"  extends ="struts-default" >
            
    < action  name ="HelloWorld"  class ="tutorial.HelloWorld" >
                
    < result > HelloWorld.jsp </ result >
            
    </ action >
        
    </ package >
    </ struts >

     

  4. 新建SayHello.jsp

    参考“新建index.html文件”步骤,弹出如图22所示对话框
    struts2.0_第22张图片
    图22 新建对话框
    点击“Next”, 进入下一步,如图23所示

    struts2.0_第23张图片
    图23 新建JSP对话框
    在“File name”键入SayHello.jsp,点击“Next”进入下一步,如图24所示

    struts2.0_第24张图片
    图24 模板选择对话框
    点击“Finish”关闭对话框,并将SayHello.jsp的内容修改为:

    <% @ page contentType="text/html; charset=UTF-8"  %>
    <% @ taglib prefix="s" uri="/struts-tags"  %>
    <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" >
    < html >
        
    < head >
            
    < title > Say Hello </ title >
        
    </ head >
        
    < body >
            
    < h3 > Say "Hello" to:  </ h3 >
            
    < s:form  action ="HelloWorld" >
                Name: 
    < s:textfield  name ="name"   />
                
    < s:submit  />
            
    </ s:form >
        
    </ body >
    </ html >

     

  5. 新建HelloWorld.jsp(请参考上一步),HelloWorld.jsp的内容为:
    <% @ page contentType="text/html; charset=UTF-8"  %>
    <% @ taglib prefix="s" uri="/struts-tags"  %>
    <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" >
    < html >
        
    < head >
            
    < title > Hello </ title >
        
    </ head >
        
    < body >
            
    < h3 >< s:property  value ="name"   /></ h3 >
        
    </ body >
    </ html >

     

  6. 重新打包发布应用程序

    先停止tomcat, 再将tomcat里webapps下的Struts2_HelloWorld.war和Struts2_HelloWorld文件夹删除,参照“将应用程序打包到tomcat上”重新发布应用程序。

  7. 启动tomcat,运行测试

    打开Internet Explorer,键入http://localhost:8080/Struts2_HelloWorld/SayHello.jsp,出现以下错误:

HTTP Status 500 -

type Exception report

message

description The server encountered an internal error () that prevented it from fulfilling this request.

exception

org.apache.jasper.JasperException: File "/struts-tags" not found
org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:51)
org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:409)
org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:116)
org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:160)
org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:424)
org.apache.jasper.compiler.Parser.parseDirective(Parser.java:493)
org.apache.jasper.compiler.Parser.parseElements(Parser.java:1557)
org.apache.jasper.compiler.Parser.parse(Parser.java:127)
org.apache.jasper.compiler.ParserController.doParse(ParserController.java:212)
org.apache.jasper.compiler.ParserController.parse(ParserController.java:101)
org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:156)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:296)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:277)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:265)
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:564)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:299)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:315)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)

 

note The full stack trace of the root cause is available in the Apache Tomcat/5.5.23 logs.

Apache Tomcat/5.5.23

max老师曾经说过是少了某个jar包,但是我在WEB-INF/lib中导入了struts2.0.9的所有jar包。
我的这个Project问题究竟出在哪里了?以我的判断应该是web.xml和jar包的问题,但是我真的找不出来了。我都被这个struts2整得心力交瘁了。有哪位大哥大姐叔叔阿姨能够帮帮我?
最好能够给我点struts2的初学者教程就更好了!!!

你可能感兴趣的:(struts2.0)