[
https://issues.jboss.org/browse/WFLY-4354?page=com.atlassian.jira.plugin....
]
Carlo de Wolf commented on WFLY-4354:
-------------------------------------
The check should be:
{code:Method.java}
public boolean isDefault() {
// Default methods are public non-abstract instance methods
// declared in an interface.
return ((getModifiers() & (Modifier.ABSTRACT | Modifier.PUBLIC |
Modifier.STATIC)) ==
Modifier.PUBLIC) && getDeclaringClass().isInterface();
}
{code}
I wonder whether we should have a pluggable SPI for Java 8 features.
EJBs can't inherit a JDK8 default method
----------------------------------------
Key: WFLY-4354
URL:
https://issues.jboss.org/browse/WFLY-4354
Project: WildFly
Issue Type: Bug
Components: EJB
Affects Versions: 9.0.0.Alpha1
Reporter: Jan Martiska
Assignee: David Lloyd
Attachments: defaultmethodejb.jar
If an EJB bean inherits a default method from an interface and doesn't override it,
attempt to call this method fails with:
{noformat}
org.jboss.invocation.CannotProceedException: INV000002: Invocation cannot proceed (end of
interceptor chain has been hit)
{noformat}
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)