Spring学习笔记之二

  1. 在Spring配置文件中,通常使用<aop:config>元素来设置AOP,其中应包括:

    • <aop:aspect>指定aspect,aspect是一个POJO类,包含了很多的advice;advice是aspect中的方法,它包含了要应用在切面上的逻辑;
    • <aop:pointcut>指定pointcut,pointcut是一个表达式,用于指定在哪些对象或者类型上应用aspect的advice;
    • <aop:before>, <aop:after>,<aop:after-returning>, <aop:after-throwing>, or <aop:around>是<aop:aspect>的子元素,用于指定将aspect中的哪一个advice方法(通过method属性)应用到哪一个pointcut上(通过pointcut-ref属性);
  2. 如何通过一个静态字段创建一个bean:
    • 使用一个内置的FactoryBean:FieldRetrievingFactoryBean,并指定其staticField属性,属性值就是该静态字段的全路径;
    • 使用<util:constant>标记,其static-field用于指定静态字段的全路径;
  3. 如果通过一个对象属性来创建一个bean:
    • 使用一个内置的FactoryBean:PropertyPathFactoryBean,其targetObject属性用于指定属性所在的对象bean,propertyPath用于属性的全路径;
    • 使用<util:property-path>标记,其path属性指定beanName....propertyName;
  4. 有时候bean需要知道一些其在spring container中的原数据信息,这需要让bean的类型实现一些特定的接口:
    接口名 说明
    BeanNameAware  Bean name
    BeanFactoryAware 当前bean所在的Bean Factory,通过它你能调用container的一些service
    ApplicationContextAware 当前bean所在的Application Context,通过它你能调用container的一些service
    MessageSourceAware  得到当前Appliaction Context中的Message Source,通过它你能得到Message
    ApplicationEventPublisherAware  得到当前Appliaction Context中的Application Event Publisher,通过它你能publish Application Events 
    ResourceLoaderAware   得到当前Appliaction Context中的Resource Loader,通过它你能load External Resources

    这些接口中的Setter方法将在bean属性被设置之后,在初始化方法被调用之前被Spring Container自动调用:

    • 通过构造函数或者工厂方法创建bean实例;
    • 设置bean的属性值;
    • 调用这些接口的Setter方法;
    • 将bean实例传递给BeanPostProcessor实现类的postProcessBeforeInitialization方法;
    • 调用bean的初始化方法;
    • 将bean实例传递给BeanPostProcessor实现类的postProcessAfterInitialization方法;
    • 使用bean;
    • 当container被关闭时;调用析构器方法;
  5. 在Spring中,各个bean之间可以通过Event来进行交流,通常使用以下3个步骤来完成:
    • 申明Event的类型,所有的Event都必须继承自ApplicationEvent类;
    • 发布Event的bean必须要实现ApplicationEventPublisher接口,如果要publish event时,请调用publishEvent()方法;
    • 侦听Event的bean都必须要实现ApplicationListener接口,并实现onAppicationEvent方法;如果Listener只想侦听特殊的Event,可以实现ApplicationListener接口的范型形式;

    application context它自己也在发布container events,例如ContextClosedEvent,ContextRefreshedEvent,RequestHandledEvent。

  6. Property Editor主要用于实现字符串与属性类型值之间的相互转换,Spring提供了很多内置的PropertyEditors,在使用这些之前,应首先注册它们;
    Spring提供了CustomNumberEditor, ClassEditor, FileEditor, LocaleEditor, StringArrayPropertyEditor, and URLEditor;其中ClassEditor, FileEditor, LocaleEditor, and URLEditor已经被预注册了;而其他的则需要注册到一个类型为CustomEditorConfigurer的bean里面;
    你也可以创建自定义的PropertyEditor,通过实现java.beans.PropertyEditor接口或者继承java.beans.PropertyEditorSupport类;在PropertyEditorSupport类中,getAsText()用于将property转换为一个字符串值,setAsText()用于将字符串值转换为一个属性值,获取或设置属性值可以通过调用getValue()和setValue()方法;
    一个PropertyEditor只能针对一种类型,当它被放置到与这个类型相同的包中,并且类名是这个类型名+Editor,则Spring Container会自动搜索它,并不需要注册到CustomEditorConfigurer中。
  7. bean的定义可以被继承,被继承的bean称之为父bean,继承的bean称之为子bean;子bean继承父bean的bean定义,但不是全部;比如autowire属性就不能被继承;
    子Bean可以复写父bean的定义,如果在父bean中定义了class属性,并且子bean的类型和父bean的类型一样,则子bean不需要定义class属性;
    父bean可以是抽象的,只需设置abstract="true",Spring Container则不会初始化这个bean;
    父bean可以不用定义类型;
    如果子bean和父bean都有一个集合类型的属性,子bean可以自定义集合类型属性中的item,并添加继承的父bean集合类型属性里面所有item,只需在元素上面设置merge="true"
  8. 我们可以使用SpEL去配置Spring
时间: 2024-10-29 02:25:36

Spring学习笔记之二的相关文章

Spring 学习笔记(二)

  一.Spring 中的bean配置 –配置形式:基于 XML 文件的方式:基于注解的方式 –Bean 的配置方式:通过全类名(反射).通过工厂方法(静态工厂方法 & 实例工厂方法).FactoryBean –IOC 容器 BeanFactory & ApplicationContext 概述 –依赖注入的方式:属性注入:构造器注入 –注入属性值细节 –自动转配 –bean 之间的关系:继承:依赖 –bean 的作用域:singleton:prototype:WEB 环境作用域 –使用外

Spring 学习笔记(二)—— IOC 容器(BeanFactory)

使用Spring IoC容器后,容器会自动对被管理对象进行初始化并完成对象之间的依赖关系的维护,在被管理对象中无须调用Spring的API. 为了实现IoC功能,Spring提供了两个访问接口: org.springframework.beans.factory.BeanFactory org.springframework.context.ApplicationContext 前者为Bean工厂,借助于配置文件能够实现对JavaBean的配置和管理,用于向使用者提供Bean的实例: 后者为Ap

Java框架spring 学习笔记(二十):事务管理(注解管理)

注解管理的方式要比xml配置方式要简单很多 只需在配置文件中添加事务注解 1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:tx="http://www.springframework.org/schema/tx" 4 xmlns:aop=&

Spring boot 学习笔记 (二)- 整合MyBatis

Spring boot 学习笔记 (二)- 整合MyBatis Spring Boot中整合MyBatis,并通过注解方式实现映射. 整合MyBatis 以Spring boot 学习笔记 (一)- Hello world 为基础项目,在pom.xml中添加如下依赖 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter&l

Spring学习笔记(三)

Spring学习笔记(三) AOP 一.使用Annotation方式实现AOP.步骤: xml里加入配置:<aop:aspectj-autoproxy /> <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org

Spring3.0官网文档学习笔记(二)

1.3 使用场景 典型的成熟的spring web应用 spring使用第三方框架作为中间层 远程使用场景 EJB包装 1.3.1 依赖管理.命名规则(包) spring-*.jar *号代表的是模块的简写,如:spring-core, spring-webmvc, spring-jms 可以在四个不同的地方找到Spring: http://www.springsource.org/downloads/community  所有的jar包被打包成zip,名称从3.0开始是: org.spring

spring学习笔记(一) Spring概述

博主Spring学习笔记整理大部分内容来自Spring实战(第四版)这本书.  强烈建议新手购入或者需要电子书的留言. 在学习Spring之前,我们要了解这么几个问题:什么是Spring?Spring的优势在哪里?怎么系统的学习Spring? 一.什么是Spring? Spring是一个开源的轻量级Java SE(Java 标准版本)/Java EE(Java 企业版本)开发应用框架,其目的是用于简化企业级应用程序开发. 那有人就会问了,Spring是如何简化开发的? 在传统开发中,一个应用是需

Unix文件系统学习笔记之二: 文件描述符、inode和打开文件表

Unix文件系统学习笔记之二: 文件描述符.inode和打开文件表 系统盘上数据的布局 文件系统无非是关于数据在磁盘上的组织以及存储空间管理的,为此,首先需要知道磁盘上数据的总体布局方式.以Unix为例,最重要的一张表如下: Unix 进程管理中和用户文件.io 最相关的数据结构:usr 数据结构 The procstructure does not record information related to file access.  However the userstructure con

Spring学习笔记(一)

Spring学习笔记(一) Spring核心思想: IOC:  Inversion Of Control (控制反转) / DI: Dependency Injection (依赖注入) AOP: Aspect Oriented Programming (面向切面编程) IOC 1. 简单的应用 Model package com.wangj.spring.model; public class User { private String username; private String pas