Example usage for org.springframework.aop.framework AdvisorChainFactory interface-usage

List of usage examples for org.springframework.aop.framework AdvisorChainFactory interface-usage

Introduction

In this page you can find the example usage for org.springframework.aop.framework AdvisorChainFactory interface-usage.

Usage

From source file org.springframework.aop.framework.HashMapCachingAdvisorChainFactory.java

/**
 * AdvisorChainFactory implementation that caches by method.
 * Uses IdentityHashMap in JVM 1.4, which skips expensive Method.hashCode()
 * call. In 1.3, falls back to using HashMap.
 * @author Rod Johnson
 * @version $Id: HashMapCachingAdvisorChainFactory.java,v 1.4 2004/03/18 02:46:05 trisberg Exp $