Struts 2 support of Java 8

2014-12-10 Thread Schlachter, Gary
I have spent time searching and could not find a definitely answer on whether or not Struts 2.3 support Java 8. In what version of Struts is Java 8 supported? Thanks, Gary

Re: Struts 2 support of Java 8

2014-12-10 Thread Lukasz Lenart
2014-12-10 18:37 GMT+01:00 Schlachter, Gary gary.schlach...@sensus.com: I have spent time searching and could not find a definitely answer on whether or not Struts 2.3 support Java 8. In what version of Struts is Java 8 supported? What you mean by supported? There are few issues that

RE: Struts 2 support of Java 8

2014-12-10 Thread Schlachter, Gary
That is what I was looking for.I upgraded Java 7 to 8 on my previously working Spring/Struts/Tomcat application and ran into the following exception: Unable to instantiate Action, com.sms.web.site.IndexAction, defined for 'Index' in namespace '/'Failed to obtain BeanInfo for class

Re: Struts 2 support of Java 8

2014-12-10 Thread Ken McWilliams
I'm using struts2 with Java 8 without issues. It will be awhile before struts2 will *require* Java 8, being a popular framework in the business world, accessibility is highly valued. On Wed, Dec 10, 2014 at 10:43 AM, Lukasz Lenart lukaszlen...@apache.org wrote: 2014-12-10 18:37 GMT+01:00

Re: Struts 2 support of Java 8

2014-12-10 Thread Dave Newton
Are you using Spring? This looks like the JavaBeans naming convention wasn't followed. On Wed, Dec 10, 2014 at 12:51 PM, Schlachter, Gary gary.schlach...@sensus.com wrote: That is what I was looking for.I upgraded Java 7 to 8 on my previously working Spring/Struts/Tomcat application and

RE: Struts 2 support of Java 8

2014-12-10 Thread Schlachter, Gary
Yes, it is a Spring 3.1. -Original Message- From: Dave Newton [mailto:davelnew...@gmail.com] Sent: Wednesday, December 10, 2014 12:58 PM To: Struts Users Mailing List Subject: Re: Struts 2 support of Java 8 Are you using Spring? This looks like the JavaBeans naming convention wasn't

Re: Struts 2 support of Java 8

2014-12-10 Thread Greg Lindholm
I'm using Java 8 with Struts 2 and have had no issues. On Wed, Dec 10, 2014 at 1:00 PM, Schlachter, Gary gary.schlach...@sensus.com wrote: Yes, it is a Spring 3.1. -Original Message- From: Dave Newton [mailto:davelnew...@gmail.com] Sent: Wednesday, December 10, 2014 12:58 PM To:

Re: Struts 2 support of Java 8

2014-12-10 Thread Paweł Wielgus
Maybe there is something like i have, some module is trying to locate classes that have lambdas in it and fails to do so. In my case i can't have lambdas in Action classes but everywhere else is ok. -- Pozdrawiam, Paweł Wielgus. tel: +48 604 603 546 2014-12-11 3:07 GMT+01:00 Greg Lindholm