|
From: Sean D. <sea...@gm...> - 2015-10-02 18:39:21
|
Hello,
I think I emailed previously about a patch that was submitted awhile ago to
skip "as" methods that's in 3.0.11.Final but was left out when refactoring
was done in newer version(s). That omission has prevented us from
upgrading.
Even more problematic is that we aren't able to move to Java 8 because it
includes default interface methods that do not include annotations which
causes RestEasy (at least in the above version) ProxyFactory to fail with
"You must use at least one, but no more than one http method annotation".
I can't think of another way around this except to put the following in
ProxyBuilder...
if (method.isDefault())
continue;
Can we submit a patch for both of these to be incorporated in the latest
version?
Thank you.
|