struts2.3 升级 struts2.5

1、版本

2.5.10.1
4.1.6.RELEASE

2、相关jar说明

Maven: org.apache.struts:struts2-convention-plugin:2.5.10.1
Maven: org.apache.struts:struts2-core:2.5.10.1
Maven: org.apache.struts:struts2-json-plugin:2.5.10.1
Maven: org.apache.struts:struts2-spring-plugin:2.5.10.1

Maven: org.springframework:spring-aop:4.1.6.RELEASE
Maven: org.springframework:spring-beans:4.1.6.RELEASE
Maven: org.springframework:spring-context:4.1.6.RELEASE
Maven: org.springframework:spring-context-support:4.1.6.RELEASE
Maven: org.springframework:spring-core:4.1.6.RELEASE
Maven: org.springframework:spring-expression:4.1.6.RELEASE
Maven: org.springframework:spring-jdbc:4.1.6.RELEASE
Maven: org.springframework:spring-jms:4.1.6.RELEASE
Maven: org.springframework:spring-messaging:4.1.6.RELEASE
Maven: org.springframework:spring-orm:4.1.6.RELEASE
Maven: org.springframework:spring-oxm:4.1.6.RELEASE
Maven: org.springframework:spring-test:4.1.6.RELEASE
Maven: org.springframework:spring-tx:4.1.6.RELEASE
Maven: org.springframework:spring-web:4.1.6.RELEASE
Maven: org.springframework:spring-webmvc:4.1.6.RELEASE

注意:需要删除

Maven: org.apache.struts.xwork:xwork-core:2.3.32

strut2.5中,xwork-core是与struts2-core合并的 pom文件中,需要忽略这个jar文件


    
        org.apache.struts.xwork
        xwork-core
    

3、相关代码说明

替换struts-tags.tld文件,最新的在strut2-core.jar META-INF中
替换security.tld文件,最新的在spring-security-taglibs-3.2.4.RELEASE.jar META-INF中

web.xml

org.apache.struts2.dispatcher.ng.filter.StrutsPrepareFilter
org.apache.struts2.dispatcher.ng.filter.StrutsExecuteFilter
替换为
org.apache.struts2.dispatcher.filter.StrutsPrepareFilter
org.apache.struts2.dispatcher.filter.StrutsExecuteFilter
原:这用到xwork-core 的jar,所有方法是返回的MAP
Map parameters = invocation.getInvocationContext().getParameters();

现在:用到的是stuts2-core-2.5.10.1.jar

拦截器中:invocation.getInvocationContext().getParameters()
返回的是
HttpParameters parameters = invocation.getInvocationContext().getParameters();

HttpParameters 类型为 Map
Parameter 只能被动使用,不能主动创建

@Override
public Parameter put(String key, Parameter value) {
    throw new IllegalAccessError("HttpParameters are immutable, you cannot put value directly!");
}

HttpParameters  不支持put,会直接抛出异常,用到的同学请注意了。。。

严重:struts2.5中,不在默认使用通配符进行访问action中的方法(http://url!方法名称.html), 不默认支持"!"

如果需要使用

> 第一种



   regex:.*
    
        /result.jsp
        /add.jsp
        /update.jsp
    



增加:


action配置上面:

regex:.*

> 第二种
@AllowedMethods(value = {"方法名称1","方法名称2"})
Action中增加注解,注册Action中的方法
示例:

@AllowedMethods(value = {"save","update"})
Paste_Image.png

结语

如果在启动的时候发现有注解的错误~~
很有可能是引用的其它项目的jar文件,中使用struts2-core低版本进行了编译打包~

你可能感兴趣的:(struts2.3 升级 struts2.5)