1、准备工作
http://struts.apache.org/下载最新版本的Struts包,并解压缩到自己的工作目录。(这里以struts-2.2.1为例)

2、新建一个新的动态Web Project,到struts-2.2.1\apps文件夹里将struts2-blank-2.2.1.war文件解压缩,复制struts2-blank-2.2.1\WEB-INF文件夹里面的web.xml文件到本项目的WEB-INF文件夹里。
到struts2-blank-2.2.1\WEB-INF\classes文件夹里将struts.xml文件复制到本项目的src文件夹里。
到struts2-blank-2.2.1\WEB-INF\lib文件夹里将所有的文件复制到本项目的WEB-INF\lib文件夹里。
文件目录结构如下所示:

随便写了一个Hello.jsp文件,里面显示Hello World!
3、修改配置文件
struts.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd"
>

<struts>
    
<constant name="struts.devMode" value="true" /><!--打开开发模式,便于调试-->
    
<package name="default" namespace="/" extends="struts-default">
        
<action name="hello">
            
<result>
                /Hello.jsp
            
</result>
        
</action>
    
</package>
</struts>
web.xml
<?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>Struts Blank</display-name>

    
<filter>
        
<filter-name>struts2</filter-name>
        
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</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>
配置完成后,将本项目布署到Tomcat上,在浏览器里输入
http://localhost:8080/Struts2_0100_Introduction/hello
如果配置都正确,则会显示Hello.jsp文件里的内容。