struts2升级到最新版本的2.5.22 遇到的问题和解决办法

1.java.lang.RuntimeException: Unable to load bean com.opensymphony.xwork2.conversion.ObjectTypeDeterminer (notiger) - [unknown location]

解决办法 去掉struts配置文件中的

<constant name="struts.objectTypeDeterminer" value="notiger" />

2.There is no Action mapped for namespace [/gpsloction] and action name [xxx!xxx] associated with context path []. - [unknown location]`
通配符 在新版本是默认关闭的
解决办法 在struts配置文件中的 增加

	<!--action设置动态访问-->
    <constant name="struts.enable.DynamicMethodInvocation" value="true" />

你可能感兴趣的:(struts2,java)