Example usage for org.springframework.aop.framework.autoproxy BeanNameAutoProxyCreator subclass-usage

List of usage examples for org.springframework.aop.framework.autoproxy BeanNameAutoProxyCreator subclass-usage

Introduction

In this page you can find the example usage for org.springframework.aop.framework.autoproxy BeanNameAutoProxyCreator subclass-usage.

Usage

From source file org.codehaus.groovy.grails.plugins.springsecurity.acl.ClassLoaderPerProxyBeanNameAutoProxyCreator.java

/**
 * Borrowed from https://github.com/alkemist/grails-aop-reloading-fix/blob/master/src/groovy/grails/plugin/aopreloadingfix/ClassLoaderPerProxyGroovyAwareAspectJAwareAdvisorAutoProxyCreator.groovy
 *
 * @author Luke Daley
 * @author <a href='mailto:burt@burtbeckwith.com'>Burt Beckwith</a>
 */

From source file com.alibaba.dragoon.patrol.spring.SpringIbatisBeanNameAutoProxyCreator.java

@SuppressWarnings({ "serial", "deprecation" })
public class SpringIbatisBeanNameAutoProxyCreator extends BeanNameAutoProxyCreator
        implements InitializingBean, SpringIbatisBeanNameAutoProxyCreatorMBean {

    private final static Log LOG = LogFactory.getLog(SpringIbatisBeanNameAutoProxyCreator.class);

From source file com.alibaba.druid.support.ibatis.SpringIbatisBeanNameAutoProxyCreator.java

@SuppressWarnings({ "serial", "deprecation" })
public class SpringIbatisBeanNameAutoProxyCreator extends BeanNameAutoProxyCreator
        implements SpringIbatisBeanNameAutoProxyCreatorMBean {

    private final static Log LOG = LogFactory.getLog(SpringIbatisBeanNameAutoProxyCreator.class);

From source file org.sakaiproject.metaobj.utils.aop.AdvisorBeanNameAutoProxyCreator.java

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.aop.Advisor;
import org.springframework.aop.framework.ProxyFactory;
import org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator;

From source file org.sakaiproject.genericdao.springutil.CurrentClassLoaderBeanNameAutoProxyCreator.java

/**
 * This sets the {@link ClassLoader} for the {@link BeanNameAutoProxyCreator} to the current
 * one that this class exists in<br/>
 * Compatible with Spring 1.2.8+
 * 
 * @author Aaron Zeckoski (azeckoski@gmail.com)