Java org.springframework.aop.support AopUtils fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.aop.support AopUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.aop.support AopUtils.

The text is from its open source code.

Method

booleancanApply(Pointcut pc, Class targetClass)
Can the given pointcut apply at all on the given class?
booleancanApply(Advisor advisor, Class targetClass)
Can the given advisor apply at all on the given class?
ListfindAdvisorsThatCanApply(List candidateAdvisors, Class clazz)
Determine the sublist of the candidateAdvisors list that is applicable to the given class.
MethodgetMostSpecificMethod(Method method, @Nullable Class targetClass)
Given a method, which may come from an interface, and a target class used in the current AOP invocation, find the corresponding target method if there is one.
ClassgetTargetClass(Object candidate)
Determine the target class of the given bean instance which might be an AOP proxy.
ObjectinvokeJoinpointUsingReflection(@Nullable Object target, Method method, Object[] args)
Invoke the given target via reflection, as part of an AOP method invocation.
booleanisAopProxy(@Nullable Object object)
Check whether the given object is a JDK dynamic proxy or a CGLIB proxy.
booleanisCglibProxy(@Nullable Object object)
Check whether the given object is a CGLIB proxy.
booleanisEqualsMethod(@Nullable Method method)
Determine whether the given method is an "equals" method.
booleanisFinalizeMethod(@Nullable Method method)
Determine whether the given method is a "finalize" method.
booleanisHashCodeMethod(@Nullable Method method)
Determine whether the given method is a "hashCode" method.
booleanisJdkDynamicProxy(@Nullable Object object)
Check whether the given object is a JDK dynamic proxy.
booleanisToStringMethod(@Nullable Method method)
Determine whether the given method is a "toString" method.
MethodselectInvocableMethod(Method method, @Nullable Class targetType)
Select an invocable method on the target type: either the given method itself if actually exposed on the target type, or otherwise a corresponding method on one of the target type's interfaces or on the target type itself.