评论

收藏

[Java] Struts2.5版本struts.xml与web.xml配置的更改方法

编程语言 编程语言 发布于:2021-10-07 14:28 | 阅读数:497 | 评论:0

这篇文章主要给大家介绍了关于Struts2.5版本中struts.xm与web.xml配置的更改方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
前言
升级之后的strut2技能总是会有点变化的,但是别忘记配置struts.xml与web.xml,下面话不多说了,来一起看看详细的介绍吧
1.web.xml核心过滤器的修改
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.filter.strutsprepareandexecutefilter</filter-class>
 
<!-- org.apache.struts2.dispatcher.ng.filter.strutsprepareandexecutefilter 
 
之前的核心过滤器全类名会有个ng ,struts2.5核心过滤器没有这个
 
-->
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
2.struts.xml每个package需要增加如下配置
<global-allowed-methods>regex:.*</global-allowed-methods> 
 
<?xml version="1.0" encoding="utf-8" ?> 
<!doctype struts public
 "-//apache software foundation//dtd struts configuration 2.5//en"
 "http://struts.apache.org/dtds/struts-2.5.dtd"> 
 
<struts> 
<constant name="struts.enable.dynamicmethodinvocation" value="true"/> 
<constant name="struts.devmode" value="true"></constant> 
 <package name="mypackage" namespace="/" extends="struts-default"> 
  <global-allowed-methods>regex:.*</global-allowed-methods> 
  <action name="first" class="useraction"> 
   
   <result name="success">first.jsp</result> 
   <result name="add">add.jsp</result> 
   <result name="delete">delete.jsp</result> 
  </action> 
   
 </package> 
</struts>
3.struts.xml配置文件
头部信息dtd改成最新的
<?xml version="1.0" encoding="utf-8"?>
<!doctype struts public
 "-//apache software foundation//dtd struts configuration 2.5//en"
 "http://struts.apache.org/dtds/struts-2.5.dtd">
做以上修改之后
对于struts2.5以上的版本就可以用url+!+方法访问action某个方法
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对CodeAE代码之家的支持。
原文链接:https://blog.csdn.net/gh670011677/article/details/75019003

关注下面的标签,发现更多相似文章