1.首先要添加struts2的jar包。
2.在web.xml中配置Filter。
 1 <filter>
 2     <filter-name>struts2</filter-name>
 3       <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
 4   </filter>
 5  
 6   <filter-mapping>
 7       <filter-name>struts2</filter-name>
 8       <url-pattern>/*</url-pattern>
 9   </filter-mapping>
3.在src中添加struts.xml。
 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <!DOCTYPE struts PUBLIC
 3     "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
 4     "http://struts.apache.org/dtds/struts-2.1.7.dtd">
 5 <struts>
 6     <package name="mystruts" extends="struts-default">
 7         <action name="hello" class="com.lei.web.HelloAction" method="">
 8             <result name="" type="">xxx</result>
 9         </action>
10     </package>
11 </struts>
4.在Action中调用指定的方法。