1.创建web工程。

2.引人struct2所需要的jar包

     struts2-core-2.1.8.1.jar :Struts 2框架的核心类库
      xwork-core-2.1.6.jar :XWork类库,Struts 2在其上构建
      ognl-2.7.3.jar :对象图导航语言(Object Graph Navigation Language),
                               struts2框架通过其读写对象的属性
      freemarker-2.3.15.jar :Struts 2的UI标签的模板使用FreeMarker编写
      commons-logging-1.1.x.jar :ASF出品的日志包,Struts 2框架使用这个日志
                                                  包来支持Log4J和JDK 1.4+的日志记录。
      commons-fileupload-1.2.1.jar 文件上传组件,2.1.6版本后需要加入此文件
      commons-io-1.3.2.jar,上传文件依赖的jar包

3.创建jsp页面

 

  helloWorld

4.创建HelloWorldAction

  /*  在Struct中所以的action都要实现Action接口*/

     public class HelloWorldAction implements Action

    {  

       public String execute() throws Exception

        {

            System.out.println("HelloWorldAction execute");

             return "success";

         }

     }   

5.配置struct.xml文件

    * 在src下创建struct.xml文件

    *该文件的DTD规范在struts2-core-2.1.8.1.jar/struts-2.1.7.dtd文件中。

    *配置该xml文件

     
            "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
      "http://struts.apache.org/dtds/struts-2.1.7.dtd">
     
        
     
        
     
        
               
           
           
              /primer/success.jsp
              /primer/error.jsp
           

        

     

     

  6.配置struct的过滤器,解析Struct.xml文件

    
       StrutsPrepareAndExecuteFilter
       org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
    

  
    
        StrutsPrepareAndExecuteFilter
        /*
    

    

7. 测试,在地址栏输入如下路径    
      http://localhost:808/itcast0706struts2/primer/test.jsp