接口 ResourceLoaderAware
- 所有超级接口:
Aware
- 所有已知实现类:
ClassPathBeanDefinitionScanner,ClassPathScanningCandidateComponentProvider,ConfigurationClassPostProcessor,DefaultPersistenceUnitManager,FreeMarkerConfigurationFactoryBean,FreeMarkerConfigurer,FreeMarkerConfigurer,LocalContainerEntityManagerFactoryBean,LocalSessionFactoryBean,ReloadableResourceBundleMessageSource,SchedulerAccessor,SchedulerAccessorBean,SchedulerFactoryBean,ScriptFactoryPostProcessor,SortedResourcesFactoryBean
public interface ResourceLoaderAware extends Aware
Interface to be implemented by any object that wishes to be notified of theResourceLoader(typically the ApplicationContext) that it runs in. This is an alternative to a fullApplicationContextdependency via theApplicationContextAwareinterface.Note that
Resourcedependencies can also be exposed as bean properties of typeResource, populated via Strings with automatic type conversion by the bean factory. This removes the need for implementing any callback interface just for the purpose of accessing a specific file resource.You typically need a
ResourceLoaderwhen your application object has to access a variety of file resources whose names are calculated. A good strategy is to make the object use aDefaultResourceLoaderbut still implementResourceLoaderAwareto allow for overriding when running in anApplicationContext. SeeReloadableResourceBundleMessageSourcefor an example.A passed-in
ResourceLoadercan also be checked for theResourcePatternResolverinterface and cast accordingly, in order to resolve resource patterns into arrays ofResourceobjects. This will always work when running in an ApplicationContext (since the context interface extends the ResourcePatternResolver interface). Use aPathMatchingResourcePatternResolveras default; see also theResourcePatternUtils.getResourcePatternResolvermethod.As an alternative to a
ResourcePatternResolverdependency, consider exposing bean properties of typeResourcearray, populated via pattern Strings with automatic type conversion by the bean factory at binding time.- 从以下版本开始:
- 10.03.2004
- 作者:
- Juergen Hoeller, Chris Beams
- 另请参阅:
ApplicationContextAware,Resource,ResourceLoader,ResourcePatternResolver
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voidsetResourceLoader(ResourceLoader resourceLoader)Set the ResourceLoader that this object runs in.
方法详细资料
setResourceLoader
void setResourceLoader(ResourceLoader resourceLoader)
Set the ResourceLoader that this object runs in.This might be a ResourcePatternResolver, which can be checked through
instanceof ResourcePatternResolver. See also theResourcePatternUtils.getResourcePatternResolvermethod.Invoked after population of normal bean properties but before an init callback like InitializingBean's
afterPropertiesSetor a custom init-method. Invoked before ApplicationContextAware'ssetApplicationContext.- 参数:
resourceLoader- the ResourceLoader object to be used by this object- 另请参阅:
ResourcePatternResolver,ResourcePatternUtils.getResourcePatternResolver(org.springframework.core.io.ResourceLoader)