- 浏览: 10524 次
- 性别:
- 来自: 北京
-
最新评论
声明:现在已经有很多有关Spring的文章,无论是转载还是原创。这一系列文章只是我对Spring学习的一些感悟。如果错误,不吝赐教。
首先,在Spring IOC容器中,有两个相关接口一个是BeanFactory,另外一个ApplicationContext。BeanFactory 提供一个进入Spring Bean容器的根途径,也就是说BeanFactory是Spring Ioc容器中的最根本的容器。BeanFactory中一共就10个方法,分别是:
BeanFactory有若干个实现类。Spring文档中给出了10个子接口。其实,可以分为几条路线
1:BeanFactory ->
HierarchicalBeanFactory(取得双亲IOC容器管理功能,也就是说取得父类BeanFactory接口类型)->
ConfigurableBeanFactory(带有配置功能的)
另外一条设计路线是:
BeanFactory->
ListableBeanFactory->
ApplicationContext(这个接口不仅继承了ListableBeanFactory,同时还继承了MessageResource、ResourceLoader、AppliactionEventPublisher等接口,强化了非常多的功能,可以说是BeanFactory的高级容器,后面我们用到的一些容器,如WebAppliactionContext和ConfigurableApplicationContext,都是继承这个接口)
第三条:
BeanFactory ->
AutowireCapableBeanFactory(Extension of the BeanFactory interface to be implemented by bean factories that are capable of autowiring, provided that they want to expose this functionality for existing bean instances.)
AppliactionContext->
WebApplicationContext
以及ConfigurableAppliactionContext
首先,在Spring IOC容器中,有两个相关接口一个是BeanFactory,另外一个ApplicationContext。BeanFactory 提供一个进入Spring Bean容器的根途径,也就是说BeanFactory是Spring Ioc容器中的最根本的容器。BeanFactory中一共就10个方法,分别是:
// 常量,用来得到一个FactoryBean,也就是产生以及装饰某个Bean的工厂实例,一个修饰符而已 static String FACTORY_BEAN_PREFIX = "&" boolean containsBean(String name) String[] getAliases(String name) <T> T getBean(Class<T> requiredType) Object getBean(String name) <T> T getBean(String name, Class<T> requiredType) Object getBean(String name, Object... args) Class<?> getType(String name) boolean isPrototype(String name) boolean isSingleton(String name) boolean isTypeMatch(String name, Class<?> targetType)
BeanFactory有若干个实现类。Spring文档中给出了10个子接口。其实,可以分为几条路线
1:BeanFactory ->
HierarchicalBeanFactory(取得双亲IOC容器管理功能,也就是说取得父类BeanFactory接口类型)->
// 返回本地Bean工厂是否包含给定名字的Bean,忽略bean在祖先上下文中的定义 boolean containsLocalBean(String name) // 返回父类bean工厂实例,如果没有返回空 BeanFactory getParentBeanFactory()
ConfigurableBeanFactory(带有配置功能的)
// 单例的标示符,可以通过registerScope()方法设置. static String SCOPE_SINGLETON // 原型的标示符,可以通过registerScope()方法设置. static String SCOPE_PROTOTYPE void addBeanPostProcessor(BeanPostProcessor beanPostProcessor) // 为嵌入的值添加一个字符串解析器,比如annotation 属性 void addEmbeddedValueResolver(StringValueResolver valueResolver) // 为所有bean的创建过程添加一个PropertyEditorRegistrar void addPropertyEditorRegistrar(PropertyEditorRegistrar registrar) // 从一个给定的其他工厂中复制所有关联的配置 void copyConfigurationFrom(ConfigurableBeanFactory otherFactory) // 用这个工厂已经注册的定制的编辑器,初始化给定PropertyEditorRegistry void copyRegisteredEditorsTo(PropertyEditorRegistry registry) void destroyBean(String beanName, Object beanInstance) // 如果有这个beam,就在当前目标范围中销毁指定范围的bean, void destroyScopedBean(String beanName) // 销毁这个工厂下面的所有单例bean,包括已经注册为废弃的内部bean void destroySingletons() // Provides a security access control context relevant to this factory. AccessControlContext getAccessControlContext() ClassLoader getBeanClassLoader() // Return the resolution strategy for expressions in bean definition values. BeanExpressionResolver getBeanExpressionResolver() // Return the current number of registered BeanPostProcessors, if any. int getBeanPostProcessorCount() // Return the associated ConversionService, if any. ConversionService getConversionService() // Return the names of all beans that the specified bean depends on, if any. String[] getDependenciesForBean(String beanName) // Return the names of all beans which depend on the specified bean, if any. String[] getDependentBeans(String beanName) // Return a merged BeanDefinition for the given bean name, merging a child bean definition with its parent if necessary. BeanDefinition getMergedBeanDefinition(String beanName) // Return the Scope implementation for the given scope name, if any. Scope getRegisteredScope(String scopeName) // Return the names of all currently registered scopes. String[] getRegisteredScopeNames() // Return the temporary ClassLoader to use for type matching purposes, if any. ClassLoader getTempClassLoader() // Obtain a type converter as used by this BeanFactory. TypeConverter getTypeConverter() // Return whether to cache bean metadata such as given bean definitions (in merged fashion) and resolved bean classes. boolean isCacheBeanMetadata() // Determine whether the specified bean is currently in creation. boolean isCurrentlyInCreation(String beanName) // Determine whether the bean with the given name is a FactoryBean. boolean isFactoryBean(String name) // Given a bean name, create an alias. void registerAlias(String beanName, String alias) // Register the given custom property editor for all properties of the given type. void registerCustomEditor(Class<?> requiredType, Class<? extends PropertyEditor> propertyEditorClass) // Register a dependent bean for the given bean, to be destroyed before the given bean is destroyed. void registerDependentBean(String beanName, String dependentBeanName) // Register the given scope, backed by the given Scope implementation. void registerScope(String scopeName, Scope scope) // Resolve all alias target names and aliases registered in this factory, applying the given StringValueResolver to them. void resolveAliases(StringValueResolver valueResolver) // Resolve the given embedded value, e.g. String resolveEmbeddedValue(String value) // Set the class loader to use for loading bean classes. void setBeanClassLoader(ClassLoader beanClassLoader) // Specify the resolution strategy for expressions in bean definition values. void setBeanExpressionResolver(BeanExpressionResolver resolver) // Set whether to cache bean metadata such as given bean definitions (in merged fashion) and resolved bean classes. void setCacheBeanMetadata(boolean cacheBeanMetadata) // Specify a Spring 3.0 ConversionService to use for converting property values, as an alternative to JavaBeans PropertyEditors. void setConversionService(ConversionService conversionService) // Explicitly control in-creation status of the specified bean. void setCurrentlyInCreation(String beanName, boolean inCreation) // Set the parent of this bean factory. void setParentBeanFactory(BeanFactory parentBeanFactory) // Specify a temporary ClassLoader to use for type matching purposes. void setTempClassLoader(ClassLoader tempClassLoader) // Set a custom type converter that this BeanFactory should use for converting bean property values, constructor argument values, etc. void setTypeConverter(TypeConverter typeConverter)
另外一条设计路线是:
BeanFactory->
ListableBeanFactory->
// Check if this bean factory contains a bean definition with the given name. boolean containsBeanDefinition(String beanName) // Find a Annotation of annotationType on the specified bean, traversing its interfaces and super classes if no annotation can be found on the given class itself. <A extends Annotation> A findAnnotationOnBean(String beanName, Class<A> annotationType) // Return the number of beans defined in the factory. int getBeanDefinitionCount() // Return the names of all beans defined in this factory. String[] getBeanDefinitionNames() // Return the names of beans matching the given type (including subclasses), judging from either bean definitions or the value of getObjectType in the case of FactoryBeans. String[] getBeanNamesForType(Class<?> type) // Return the names of beans matching the given type (including subclasses), judging from either bean definitions or the value of getObjectType in the case of FactoryBeans. String[] getBeanNamesForType(Class<?> type, boolean includeNonSingletons, boolean allowEagerInit) // Return the bean instances that match the given object type (including subclasses), judging from either bean definitions or the value of getObjectType in the case of FactoryBeans. <T> Map<String,T> getBeansOfType(Class<T> type) // Return the bean instances that match the given object type (including subclasses), judging from either bean definitions or the value of getObjectType in the case of FactoryBeans. <T> Map<String,T> getBeansOfType(Class<T> type, boolean includeNonSingletons, boolean allowEagerInit) // Find all beans whose Class has the supplied Annotation type. Map<String,Object> getBeansWithAnnotation(Class<? extends Annotation> annotationType)
ApplicationContext(这个接口不仅继承了ListableBeanFactory,同时还继承了MessageResource、ResourceLoader、AppliactionEventPublisher等接口,强化了非常多的功能,可以说是BeanFactory的高级容器,后面我们用到的一些容器,如WebAppliactionContext和ConfigurableApplicationContext,都是继承这个接口)
第三条:
BeanFactory ->
AutowireCapableBeanFactory(Extension of the BeanFactory interface to be implemented by bean factories that are capable of autowiring, provided that they want to expose this functionality for existing bean instances.)
// Deprecated. as of Spring 3.0: If you are using mixed autowiring strategies, prefer annotation-based autowiring for clearer demarcation of autowiring needs. static int AUTOWIRE_AUTODETECT // Constant that indicates autowiring bean properties by name (applying to all bean property setters). static int AUTOWIRE_BY_NAME // Constant that indicates autowiring bean properties by type (applying to all bean property setters). static int AUTOWIRE_BY_TYPE // Constant that indicates autowiring the greediest constructor that can be satisfied (involves resolving the appropriate constructor). static int AUTOWIRE_CONSTRUCTOR // Constant that indicates no externally defined autowiring. static int AUTOWIRE_NO // Apply BeanPostProcessors to the given existing bean instance, invoking their postProcessAfterInitialization methods. Object applyBeanPostProcessorsAfterInitialization(Object existingBean, String beanName) // Apply BeanPostProcessors to the given existing bean instance, invoking their postProcessBeforeInitialization methods. Object applyBeanPostProcessorsBeforeInitialization(Object existingBean, String beanName) // Apply the property values of the bean definition with the given name to the given bean instance. void applyBeanPropertyValues(Object existingBean, String beanName) // Instantiate a new bean instance of the given class with the specified autowire strategy. Object autowire(Class beanClass, int autowireMode, boolean dependencyCheck) // Populate the given bean instance through applying after-instantiation callbacks and bean property post-processing (e.g. void autowireBean(Object existingBean) // Autowire the bean properties of the given bean instance by name or type. void autowireBeanProperties(Object existingBean, int autowireMode, boolean dependencyCheck) // Configure the given raw bean: autowiring bean properties, applying bean property values, applying factory callbacks such as setBeanName and setBeanFactory, and also applying all bean post processors (including ones which might wrap the given raw bean). Object configureBean(Object existingBean, String beanName) // Fully create a new bean instance of the given class. <T> T createBean(Class<T> beanClass) // Fully create a new bean instance of the given class with the specified autowire strategy Object createBean(Class beanClass, int autowireMode, boolean dependencyCheck) // Initialize the given raw bean, applying factory callbacks such as setBeanName and setBeanFactory, also applying all bean post processors (including ones which might wrap the given raw bean). Object initializeBean(Object existingBean, String beanName) // Resolve the specified dependency against the beans defined in this factory. Object resolveDependency(DependencyDescriptor descriptor, String beanName) // Resolve the specified dependency against the beans defined in this factory. Object resolveDependency(DependencyDescriptor descriptor, String beanName, Set<String> autowiredBeanNames, TypeConverter typeConverter)
AppliactionContext->
WebApplicationContext
static String CONTEXT_ATTRIBUTES_BEAN_NAME // Name of the ServletContext/PortletContext attributes environment bean in the factory. static String CONTEXT_PARAMETERS_BEAN_NAME // Name of the ServletContext/PortletContext init-params environment bean in the factory. static String ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE // Context attribute to bind root WebApplicationContext to on successful startup. static String SCOPE_APPLICATION // Scope identifier for the global web application scope: "application". static String SCOPE_GLOBAL_SESSION // Scope identifier for global session scope: "globalSession". static String SCOPE_REQUEST // Scope identifier for request scope: "request". static String SCOPE_SESSION // Scope identifier for session scope: "session". static String SERVLET_CONTEXT_BEAN_NAME // Name of the ServletContext environment bean in the factory. Fields inherited from interface org.springframework.beans.factory.BeanFactory FACTORY_BEAN_PREFIX Fields inherited from interface org.springframework.core.io.support.ResourcePatternResolver CLASSPATH_ALL_URL_PREFIX Fields inherited from interface org.springframework.core.io.ResourceLoader CLASSPATH_URL_PREFIX
以及ConfigurableAppliactionContext
static String CONFIG_LOCATION_DELIMITERS // Any number of these characters are considered delimiters between multiple context config paths in a single String value. static String CONVERSION_SERVICE_BEAN_NAME // Name of the ConversionService bean in the factory. static String ENVIRONMENT_BEAN_NAME // Name of the Environment bean in the factory. static String LOAD_TIME_WEAVER_BEAN_NAME // Name of the LoadTimeWeaver bean in the factory. static String SYSTEM_ENVIRONMENT_BEAN_NAME // Name of the System environment bean in the factory. static String SYSTEM_PROPERTIES_BEAN_NAME // Name of the System properties bean in the factory. // Fields inherited from interface org.springframework.beans.factory.BeanFactory FACTORY_BEAN_PREFIX // Fields inherited from interface org.springframework.core.io.support.ResourcePatternResolver CLASSPATH_ALL_URL_PREFIX // Fields inherited from interface org.springframework.core.io.ResourceLoader CLASSPATH_URL_PREFIX void addApplicationListener(ApplicationListener<?> listener) // Add a new ApplicationListener that will be notified on context events such as context refresh and context shutdown. void addBeanFactoryPostProcessor(BeanFactoryPostProcessor beanFactoryPostProcessor) // Add a new BeanFactoryPostProcessor that will get applied to the internal bean factory of this application context on refresh, before any of the bean definitions get evaluated. void close() // Close this application context, releasing all resources and locks that the implementation might hold. ConfigurableListableBeanFactory getBeanFactory() // Return the internal bean factory of this application context. ConfigurableEnvironment getEnvironment() // Return the Environment for this application context in configurable form. boolean isActive() // Determine whether this application context is active, that is, whether it has been refreshed at least once and has not been closed yet. void refresh() // Load or refresh the persistent representation of the configuration, which might an XML file, properties file, or relational database schema. void registerShutdownHook() // Register a shutdown hook with the JVM runtime, closing this context on JVM shutdown unless it has already been closed at that time. void setEnvironment(ConfigurableEnvironment environment) // Set the Environment for this application context. void setId(String id) // Set the unique id of this application context. void setParent(ApplicationContext parent) // Set the parent of this application context.
相关推荐
### Spring源代码自我解析 #### 一、Spring框架概述与价值 Spring框架作为一个全面的轻量级企业级应用开发框架,其设计精妙且结构清晰,不仅展现了设计者Rod Johnson等人的深厚技术功底,同时也成为了Java技术领域...
### IoC基础与XML Bean解析 #### IoC概念解析 ...在实际开发中,Spring框架提供了更为强大和灵活的功能,例如支持自动装配、AOP等功能,但在理解和学习IoC思想时,这个简单的框架不失为一个良好的起点。
还有自我总结资料,放到下一个文件夹当中上传,这里压缩只有这么多了,希望能去下载,那个全部是文档。 国际化: Locales.java globalMessage_en_US.properties globalMessage_zh_CN.properties struts.properties ...
5. **结果分析与个人小结**:作者对项目的整体运行情况进行了分析,确认了旅游推荐模块的功能,并意识到实践的重要性。在实践中,理论知识和实际应用相结合,使作者发现了编程理论学习中的不足,并通过学习补充了...
第二周,重点在于学习Spring框架的原理,包括Spring AOP、Hibernate、Spring MVC和Spring IOC,以及JQuery的使用。通过实际操作和讨论,实习生将深入理解这些技术在系统项目中的应用。 第三周,实习生将运用所学...
在Java试用期转正的工作总结中,程序员深入地反思了一年的工作经历,尤其是在DRP分销资源安排系统项目中的学习和实践经验。这个项目是用Java Web技术开发的,涵盖了从需求分析、数据库设计到编码的全过程,对于巩固...
2. Spring 框架:熟悉 Spring 框架,了解 Spring 的 IOC 和 AOP 概念,能够使用 Spring 框架进行开发。 3. Spring MVC 框架:熟悉 Spring MVC 框架,了解基于 Spring MVC 的 Web 开发模式,能够使用 Spring MVC ...
同时,Spring框架的控制反转(IoC)和面向切面编程(AOP)的理念让我对设计模式有了更深入的认识,对项目的架构设计有了更加清晰的思路。在Hibernate的学习中,我学会了如何通过对象关系映射来操作数据库,大幅提升...
Spring框架则是业务逻辑层的核心,它实现了IOC(Inversion of Control,控制反转)和依赖注入,帮助开发者集中管理对象和事务。Spring还引入了AOP(Aspect Oriented Programming,面向切面编程),使得开发者可以...
《J2EE企业级项目开发-1期 课程整体设计》是针对软件技术专业学生的一门专业课,旨在通过60学时的学习,使学生掌握Java Web高级开发中常用的企业级框架技术,如Struts2、Hibernate和Spring的集成应用。课程设计遵循...
1. **Spring框架**:深入理解Spring IoC容器、AOP、事务管理等核心概念,掌握Spring MVC的工作原理。 2. **MyBatis**:理解MyBatis的动态SQL,熟悉Mapper接口和XML映射文件的使用。 3. **Hibernate**:掌握Hibernate...
2. Spring框架:理解IoC容器、AOP原理,Spring Boot和Spring Cloud的应用。 3. MyBatis/MyBatis-Plus:熟练掌握SQL映射和动态SQL,事务管理。 4. Java 8新特性:函数式编程、Stream API、Lambda表达式、Optional类等...
- Spring框架(IoC/AOP) - Hibernate ORM映射 - XML/AJAX 4. **Java EE企业级应用开发**: - EJB3.0 - SOA服务导向架构 - RESTful Web服务 - 微服务架构 #### 四、实践项目经验 理论学习之后,实践是非常...
总结来说,这篇《程序员述职报告》以一种自省和反思的态度,展示了一名技术人员在快速变化的技术领域中,如何通过不断学习和实践来提升自己,成为技术领域的佼佼者。它不仅仅是一份工作回顾,更是一份面向未来的规划...
7. **项目总结**:在项目总结中,求职者详细阐述了如何应用Spring的Template技术和AOP进行事务控制,使用Spring注解和IOC容器实现解耦合,这显示了其深入理解和实践能力。 以上内容构成了一个全面展示Java工程师...
总结起来,这位应聘者是一位具有扎实Java基础,丰富的Web开发经验,尤其擅长使用Struts、Hibernate和Spring框架的开发者,同时具备良好的团队协作能力和学习能力,是Java开发工程师的理想人选。
- **电信运营计费系统**:采用Spring内嵌的Hibernate处理对象持久化,Struts作为前端框架,利用Spring的IOC特性提高系统的可扩展性和可复用性。 - **网上购物系统**:使用Struts框架,Java Bean处理业务逻辑,...
- **掌握Spring框架的核心概念**: 包括IOC容器、AOP原理、事务管理等。 - **理解Struts2的工作机制**: 如Action、拦截器、结果类型等组件的配置与使用方法。 - **熟悉Hibernate的基本用法**: 包括实体类映射文件编写...
- Spring IoC容器管理对象的生命周期,实现依赖注入。 - **多线程** - Java提供内置的多线程支持。 - 多线程编程可以充分利用多核处理器的优势,提高应用程序的性能。 - 实现多线程下载、聊天室等功能需要深入...
13. **自我评价**:强调了团队合作、技术学习、工作态度、沟通能力和英语阅读能力,这些软技能对于一个成功的IT专业人士同样重要。 总结来说,这份简历展示了一个具备全面Java开发技能的专业人士,不仅掌握了核心的...