Created attachment 1282138 [details] reproducer for logging Description of problem: Getting JBAS014356: Not a business method protected java.lang.String test.xmpl.AbstractBean.testMethod(). Do not call non-public methods on EJB's When the base class method is protected. How reproducible: Base class public abstract class AbstractBean { protected String testMethod() { return "OK"; } } Child: @Stateless public class ChildBean extends AbstractBean { public String testMethod() { return super.testMethod(); } } One out of 2 server restarts you get the error.
Created attachment 1282509 [details] sources
Verified with EAP 6.4.17.CP.CR3
Released on 2017-09-05 as part of the EAP 6.4.17 release.