List of usage examples for javax.interceptor InvocationContext getParameters
public Object[] getParameters();
From source file:util.EJBLoggerAOPExample.java
@AroundInvoke public Object logMethodEntry(InvocationContext invocationContext) throws Exception { //System.out.println("Entering method:" + invocationContext.getMethod().getName()); log.info("Entering method:" + invocationContext.getMethod().getName()); log.info(invocationContext.getParameters()); return invocationContext.proceed(); }