In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article focuses on "how to automatically assemble-Aware injection Spring underlying components and principles", interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Next let the editor to take you to learn "how to automatically assemble-Aware injection Spring underlying components and principles" it!
23. Automatic assembly-Aware injection Spring underlying components & principle
Aware interface, which provides functions similar to callback functions
Custom components want to use some of the underlying components of the Spring container (Application Context,Bean Factory); custom components need to implement the xxxAware interface; when creating objects, the methods specified in the interface are called to inject the relevant components
Package org.springframework.beans.factory;public interface Aware {} 23.1 ApplicationContextAware Auto injection IOC Container package org.springframework.context;import org.springframework.beans.BeansException;import org.springframework.beans.factory.Aware;public interface ApplicationContextAware extends Aware {void setApplicationContext (ApplicationContext applicationContext) throws BeansException;} 23.2 ApplicationEventPublisherAware injection event dispatcher package org.springframework.context;import org.springframework.beans.factory.Aware;public interface ApplicationEventPublisherAware extends Aware {void setApplicationEventPublisher (ApplicationEventPublisher applicationEventPublisher);} 23.3 BeanClassLoaderAware classloader package org.springframework.beans.factory Public interface BeanClassLoaderAware extends Aware {void setBeanClassLoader (ClassLoader classLoader);} 23.4 BeanFactoryAware Bean Factory package org.springframework.beans.factory;import org.springframework.beans.BeansException;public interface BeanFactoryAware extends Aware {void setBeanFactory (BeanFactory beanFactory) throws BeansException;} 23.5 BeanNameAware Bean name package org.springframework.beans.factory;public interface BeanNameAware extends Aware {void setBeanName (String name);} 23.6 EmbeddedValueResolverAware Embedded value Parser package org.springframework.context;import org.springframework.beans.factory.Aware;import org.springframework.util.StringValueResolver Public interface EmbeddedValueResolverAware extends Aware {void setEmbeddedValueResolver (StringValueResolver resolver);} 23.7 EnvironmentAware environment package org.springframework.context;import org.springframework.beans.factory.Aware;import org.springframework.core.env.Environment;public interface EnvironmentAware extends Aware {void setEnvironment (Environment environment);} 23.8 ImportAware import related package org.springframework.context.annotation;import org.springframework.beans.factory.Aware;import org.springframework.core.type.AnnotationMetadata;public interface ImportAware extends Aware {void setImportMetadata (AnnotationMetadata importMetadata) } 23.9 LoadTimeWeaverAware Import related package org.springframework.context.weaving;import org.springframework.beans.factory.Aware;import org.springframework.instrument.classloading.LoadTimeWeaver;public interface LoadTimeWeaverAware extends Aware {void setLoadTimeWeaver (LoadTimeWeaver loadTimeWeaver);} 23.10 MessageSourceAware internationalization package org.springframework.context;import org.springframework.beans.factory.Aware;public interface MessageSourceAware extends Aware {void setMessageSource (MessageSource messageSource);} 23.11 NotificationPublisherAware support package org.springframework.jmx.export.notification;import org.springframework.beans.factory.Aware for sending notifications Public interface NotificationPublisherAware extends Aware {void setNotificationPublisher (NotificationPublisher notificationPublisher);} 23.12 ResourceLoaderAware resource loader package org.springframework.context;import org.springframework.beans.factory.Aware;import org.springframework.core.io.ResourceLoader;public interface ResourceLoaderAware extends Aware {void setResourceLoader (ResourceLoader resourceLoader);} 23.13 Test case package com.hw.springannotation.beans;import org.springframework.beans.BeansException;import org.springframework.beans.factory.BeanNameAware;import org.springframework.context.ApplicationContext;import org.springframework.context.ApplicationContextAware Import org.springframework.context.EmbeddedValueResolverAware;import org.springframework.stereotype.Component;import org.springframework.util.StringValueResolver;/** * @ Description TODO * @ Author hw * @ Date 15:44 on 2018-11-28 * @ Version 1.0 * / @ Componentpublic class Red implements ApplicationContextAware, BeanNameAware, EmbeddedValueResolverAware {private ApplicationContext applicationContext; public void setApplicationContext (ApplicationContext applicationContext) throws BeansException {System.out.println ("incoming IOC" + applicationContext); this.applicationContext = applicationContext } public void setBeanName (String name) {System.out.println ("name of current bean" + name);} public void setEmbeddedValueResolver (StringValueResolver resolver) {String value = resolver.resolveStringValue ("Hello ${os.name} I am # {20x20}"); System.out.println ("parsed string:" + value);}}
Run:
To put it bluntly, the Aware interface class is an abstract of a callback class.
At this point, I believe you have a deeper understanding of "how to automatically assemble-Aware injection Spring underlying components and principles". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.