Re: Upgrading Struts from 2.3.16 to 2.3.31

2016-11-17 Thread abhishek verma
Hello, I went on to debug OgnlRuntime class and found that method public static List getDeclaredMethods(Class targetClass, String propertyName, boolean findSets) has new code to handle java bean. Version 2.3.16 : String baseName = Character.toUpperCase(propertyName.charAt(0)) +

Upgrading Struts from 2.3.16 to 2.3.31

2016-11-17 Thread abhishek verma
Hello, Due to the recent security vulnerability identified in Struts, we are upgrading application from struts version 2.3.16 to 2.3.31.One of the major issues being the naming convention of getter and setter in Action classes.Example: For instance variable of String aType, given below are the

Re: Upgrading Struts from 2.3.16 to 2.3.31

2016-11-17 Thread Lukasz Lenart
2016-11-17 20:53 GMT+01:00 abhishek verma : > Can someone please suggest a solution at configuration level that does not > require setter/getter changes in each and every Action classes ? There is no such way to restore the old behaviour using a configuration

Re: Upgrading Struts from 2.3.16 to 2.3.31

2016-11-17 Thread Lukasz Lenart
2016-11-17 20:53 GMT+01:00 abhishek verma : > Can someone please suggest a solution at configuration level that does not > require setter/getter changes in each and every Action classes ? There is no such way to restore the old behaviour using a configuration

Upgrading Struts from 2.3.16 to 2.3.31

2016-11-17 Thread abhishek verma
Hello, Due to the recent security vulnerability identified in Struts, we are upgrading application from struts version 2.3.16 to 2.3.31.One of the major issues being the naming convention of getter and setter in Action classes.Example: For instance variable of String aType, given below are the

Upgrading Struts from 2.3.16 to 2.3.31

2016-11-17 Thread abhishek verma
Hello, Due to the recent security vulnerability identified in Struts, we are upgrading application from struts version 2.3.16 to 2.3.31.One of the major issues being the naming convention of getter and setter in Action classes.Example: For instance variable of String aType, given below are