com.googlecode.ehcache.annotations
Annotation Type ResolverFactory


@Target(value=ANNOTATION_TYPE)
@Retention(value=RUNTIME)
@Inherited
@Documented
public @interface ResolverFactory

Specifies and configures a CacheResolverFactory in a Spring ApplicationContext that is a child of the application's context. All beans available in the application's context can be referenced by a CacheResolverFactory configured this way.


Required Element Summary
 java.lang.String name
          The class name of the resolver to use.
 
Optional Element Summary
 Property[] properties
          Bean properties used to configure the resolver.
 

Element Detail

name

public abstract java.lang.String name
The class name of the resolver to use. If one of the included resolver in the com.googlecode.ehcache.annotations.resolver package is used only the class name is required. If a class outside that package is used the fully qualified class name must be specified.

properties

public abstract Property[] properties
Bean properties used to configure the resolver.

Default:
{}


Copyright © 2011. All Rights Reserved.