升级struts2版本为2.3.15.1报java.lang.NoSuchMethodError: ognl.SimpleNode.isEvalChain(Lo

今天为了解决struts2的漏洞时升级到2.3.15.1时报下面错误

java.lang.NoSuchMethodError: ognl.SimpleNode.isEvalChain(Lognl/OgnlContext;)Z

原因是因为ognl的版本也需要跟着升级需要升级到3.0.6

pom文件格式为:

<dependency>
	<groupId>ognl</groupId>
	<artifactId>ognl</artifactId>
	<version>3.0.6</version>
</dependency>

 

 

 

 

你可能感兴趣的:(struts2)