jOOQ / jOOR

jOOR - Fluent Reflection in Java jOOR is a very simple fluent API that gives access to your Java Class structures in a more intuitive way. The JDK's reflection APIs are hard and verbose to use. Other languages have much simpler constructs to access type meta information at runtime. Let us make Java reflection better.
http://www.jooq.org/products
Apache License 2.0
2.8k stars 377 forks source link

Correct implementation of proxy default method dispatch when there are multiple interfaces #84

Open lukaseder opened 5 years ago

lukaseder commented 5 years ago

https://github.com/jOOQ/jOOR/issues/83 introduced the possibility of having a proxy that implements multiple interfaces. This can cause trouble when we're calling default methods, whose calls have to be dispatched explicitly using reflection API that changed between Java 8 and 9.

This issue should fix situations where we want to call a default method inherited from one of multiple interfaces.