struts2的web.xml
时间: 2023-07-15 08:15:29 浏览: 115
在使用 Struts2 框架时,需要在 web.xml 文件中进行配置。以下是一个基本的 Struts2 配置示例:
```
<?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/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>Struts2 Example</display-name>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ServletDispatcherResult</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
```
在上述配置中,定义了一个名为“struts2”的过滤器,它将所有请求都转发到 Struts2 控制器。同时,还配置了欢迎页面为“index.jsp”文件。需要注意的是,Struts2 的配置文件通常是在项目的 classpath 下的“struts.xml”文件中进行配置的。
阅读全文