[ 
https://issues.apache.org/jira/browse/TAP5-2449?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16237378#comment-16237378
 ] 

Hudson commented on TAP5-2449:
------------------------------

ABORTED: Integrated in Jenkins build tapestry-trunk-freestyle #1677 (See 
[https://builds.apache.org/job/tapestry-trunk-freestyle/1677/])
TAP5-2032, TAP5-2449, TAP5-1493: consider overridden methods first so we 
(jkemnade: rev 127f62edf90b2a838896626143f2ca9e6a718a76)
* (edit) 
beanmodel/src/main/java/org/apache/tapestry5/ioc/internal/services/PropertyAccessImpl.java
* (edit) tapestry-ioc/src/test/groovy/ioc/specs/PropertyAccessImplSpec.groovy
* (edit) 
beanmodel/src/main/java/org/apache/tapestry5/ioc/internal/services/ClassPropertyAdapterImpl.java


> PropertyConduitSource can't see Java 8 default methods
> ------------------------------------------------------
>
>                 Key: TAP5-2449
>                 URL: https://issues.apache.org/jira/browse/TAP5-2449
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.4
>            Reporter: quurks
>            Priority: Major
>              Labels: desired_for_5.5
>             Fix For: 5.5.0
>
>
> *Stets to reproduce:*
> Class with 
> {code}
> public class TestDefaultMethod {
>     @Property private TestData testData = new TestData();
>     public static interface TestInterface {
>         public default String getTestString() {
>             return "Alpha";
>         }
>     }
>     public static class TestData implements TestInterface {
>     }
> }
> {code}
> Template with 
> {code}
> ${testData.testString}
> {code}
> *Expected*:
> "Alpha" is put in the website
> *Actual*:
>    Exception type: org.apache.tapestry5.ioc.util.UnknownValueException
>           Message: Class com.example.pages.TestDefaultMethod$TestData does 
> not contain a property (or public field) named 'testString'.
>   availableValues: AvailableValues\[Properties (and public fields): class]
> It works with
> {code}
> ${testData.getTestString()}
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to