Re: Tomcat 8.0.5, .jsp & Java 8 interface static methods

2014-04-07 Thread Francesco Bassi
Sorry!!! Please disregard the whole topic. I forgot to set these parameters. Now everything is working great. Thanks again for your usual great support! On Mon, Apr 7, 2014 at 4:33 PM, Francesco Bassi wrote: > Well... > > I'm using 8.0.3 (and before I used to use 8.0 RC something) and the

Re: Tomcat 8.0.5, .jsp & Java 8 interface static methods

2014-04-07 Thread Francesco Bassi
Well... I'm using 8.0.3 (and before I used to use 8.0 RC something) and the access to the static interface methods are working pretty well... On Mon, Apr 7, 2014 at 4:17 PM, Mark Thomas wrote: > On 07/04/2014 12:25, Francesco Bassi wrote: > > Hello everybody. > > > > Since 8.0.5, it seems that

Re: Tomcat 8.0.5, .jsp & Java 8 interface static methods

2014-04-07 Thread Mark Thomas
On 07/04/2014 12:25, Francesco Bassi wrote: > Hello everybody. > > Since 8.0.5, it seems that .jsps that include invocations of static > interface methods don't work anymore. What do you mean any more? The changes necessary to support that out of the box (updated JDT compiler) weren't available u

Tomcat 8.0.5, .jsp & Java 8 interface static methods

2014-04-07 Thread Francesco Bassi
Hello everybody. Since 8.0.5, it seems that .jsps that include invocations of static interface methods don't work anymore. Here's an example: Test.java; package com.wfb.test; public interface Test { public static String getText() { return "Gotcha!"; } } test.jsp <%String s = com.wfb.test.T