struts2.0搭建环境

一、搭建环境:

1、新建一个Web工程strust2.0Demo

2、把struts2.0jar包导入工程

 

struts2.0搭建环境

3、编写配置文件web.xml 即配好过滤器的映射文件

<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>

  

4、启动服务器(如果没有报错则搭建环境成功,否则搭建环境失败)

struts2.0搭建环境

你可能感兴趣的:(struts2)