徒手建立struts2应用

来源:互联网 发布:js复合防水涂料多少钱 编辑:程序博客网 时间:2024/09/21 09:00

环境:Tomcat6.0 + eclipse3.5 + struts2.3.3

在Tomcat6.0的webapps中建立my文件夹

WEB-INF

将struts2.3.3的jar文件拷入lib文件夹中

复制struts的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
   version="2.5">
     
  <welcome-file-list>
    <welcome-file>login.jsp</welcome-file>
  </welcome-file-list> 
  

    <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>
 
</web-app>

 

未完待续