Struts2 的各种xml 和struts 配置信息 都是一样的

Posted 菜渣

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2 的各种xml 和struts 配置信息 都是一样的相关的知识,希望对你有一定的参考价值。

先来2中xml  都可以 哪个都可以

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.jsp</welcome-file>

</welcome-file-list>


以下还有一种 俩种都行以下是2.0的
</welcome-file-list>
<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>
<welcome-file-list>
<welcome-file>/WEB-INF/jsp/login.jsp</welcome-file>
</welcome-file-list>

</web-app>

 

 

再来 struts2 的 配置信息 下次 自己 搞 这是标配

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

 

以上是关于Struts2 的各种xml 和struts 配置信息 都是一样的的主要内容,如果未能解决你的问题,请参考以下文章

Struts2 配置文件

Struts2项目搭建之struts.xml配置

Struts2 配置文件

Struts2 XML配置详解

Struts2 XML配置详解

Struts1和Struts2的区别和对比