2018-09-16

AOP的XML配置:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-4.2.xsd" >


    <bean id="productDao" class="com.itheima.spring.demo3.ProductDaoImpl" />
    <bean id="myAspect" class="com.itheima.spring.demo3.MyAspectXml" />

    <aop:config>
        <aop:pointcut expression="execution(* com.itheima.spring.demo3.ProductDaoImpl.save(..))" id="pointcut1"/>
        <aop:pointcut expression="execution(* com.itheima.spring.demo3.ProductDaoImpl.delete(..))" id="pointcut2"/>
        <aop:pointcut expression="execution(* com.itheima.spring.demo3.ProductDaoImpl.update(..))" id="pointcut3"/>
        <aop:pointcut expression="execution(* com.itheima.spring.demo3.ProductDaoImpl.find(..))" id="pointcut4"/>
    
        <aop:aspect ref="myAspect">
            <aop:before method="checkPri" pointcut-ref="pointcut1"/>
            <aop:after-returning method="writeLog" pointcut-ref="pointcut2"  returning="res" />
            <aop:around  method="around" pointcut-ref="pointcut3"   />
            <aop:after-throwing  method="afterThrowing" pointcut-ref="pointcut4"  throwing="ex" />
            <aop:after method="after" pointcut-ref="pointcut4" />
        </aop:aspect>
    
    </aop:config>


 <!-- 
     <context:component-scan base-package="com.itheima.spring"/>    
 -->
</beans>

AOP的先关术语:

图片.png

Spring底层的AOP实现原理

动态代理:

  1. JDK动态代理:只能对实现了接口的类产生代理
  2. Cglib动态代理(类似于Javassist第三方代理技术):对所有类都可以。生成了子类对象。

Bean的作用范围的注解

@Scope :作用范围

  1. singleton : 默认单例
  2. prototype : 多例
  3. request :
  4. session :
  5. globalsession :

生命周期的注解

@PostConstruct :初始化方法
@PreDestroy :销毁方法

Spring的IOC 的注解开发

1、类注入的注解

@Controller : web层
@Service :service层
@Repository :dao 层

2、属性注入的注解

普通属性:
@Value :设置普通属性的值
对象类型属性:
@Autowired :设置对象类型的属性的值。但是按照类型完成属性注入。
但是我们习惯按照名称完成属性注入,比如让@Qualifier一起使用完成按照名称属性注入。
@Resource :完成对象类型的属性注入,按照名称完成属性注入。

Spring中Bean的实例化

实例化方式

三种实例化方式:

  1. 使用类构造器实例化
  2. 静态工厂
  3. 实例工厂
    https://blog.csdn.net/yerenyuan_pku/article/details/52832793
    https://www.cnblogs.com/zhanglei93/p/6205076.html
    https://jingyan.baidu.com/article/27fa7326c32db546f9271f6c.html
    https://www.cnblogs.com/zhanglei93/p/6221546.html

实例化方式的顺序

https://www.cnblogs.com/fanguangdexiaoyuer/p/5886050.html
加载顺序也可以看到为:
先构造函数——>然后是b的set方法注入—— >InitializingBean 的afterPropertiesSet方法——>init- method方法

总结为:
以下内容是从书中摘录 来的,但是我发现即使摘录一遍,对其内容的理解也会更加深入!
一、Spring装配Bean的过程
1. 实例化;
2. 设置属性值;
3. 如果实现了BeanNameAware接口,调用setBeanName设置Bean的ID或者Name;
4. 如果实现BeanFactoryAware接口,调用setBeanFactory 设置BeanFactory;
5. 如果实现ApplicationContextAware,调用setApplicationContext设置ApplicationContext
6. 调用BeanPostProcessor的预先初始化方法;
7. 调用InitializingBean的afterPropertiesSet()方法;
8. 调用定制init-method方法;
9. 调用BeanPostProcessor的后初始化方法;


Spring容器关闭过程
1. 调用DisposableBean的destroy();
2. 调用定制的destroy-method方法;

属性注入的方式

1、构造方法注入
    <bean  id="car" class="com.itheima.spring.demo1.Car" >
        <constructor-arg index="0" value="奔驰"  />
        <constructor-arg index="1" value="5000000"  />
    </bean>
2、set方法注入
    <bean  id="car" class="com.itheima.spring.demo1.Car">
        <property name="name"  value="凯迪拉克"  />
        <property name="price"  value="350000" />
    </bean>
3、 p名称空间注入
    <bean id="car"  class="com.itheima.spring.demo1.Car"  p:name="玛莎拉蒂" p:price="1000000"   />
    <bean id="employee"  class="com.itheima.spring.demo1.Employee"  p:name="欧阳大大" p:car-ref="car"  />
4、SpEL属性注入
    <!-- SpEL -->
    <bean  id="car" class="com.itheima.spring.demo1.Car">
        <property name="name"  value="#{'凯迪拉克'}"  />
        <property name="price"  value="#{350000}" />
    </bean>
    <!-- SpEL -->
    <bean  id="car" class="com.itheima.spring.demo1.Car">
        <property name="name"  value="#{carInfo.getName() }"  />
        <property name="price"  value="#{carInfo.getPrice() }" />
    </bean>
    <bean  id="employee" class="com.itheima.spring.demo1.Employee">
        <property name="name"  value="#{'凯撒'}"  />
        <property name="car"   value="#{car}" />
    </bean>
5、集合属性的注入 
 <!-- Spring的集合属性的注入 -->
    <bean id="colloctionBean" class="com.itheima.spring.demo1.CollectionBean" >
        <property name="arrs">
            <list>
                <value>王东东</value>
                <value>王嘻嘻</value>
                <value>王南安</value>
            </list>
        </property>
        <property name="list">
            <list>
                <value>王aa</value>
                <value>王bb</value>
                <value>王cc</value>
            </list>
        </property>
        <property name="st">
            <set>
                <value>aaa</value>
                <value>bbb</value>
                <value>ccc</value>
            </set>
        </property>     
        <property name="map">
            <map>
                <entry key="aaa" value="111" />
                <entry key="bbb" value="222" />
                <entry key="ccc" value="333" />
            </map>
        </property>     
           
        </bean>

Bean的作用范围的配置:

scope : Bean的作用范围

  1. singleton: 默认的,Spring会采用单例模式创建对象,对象不管调用多少次,只会new一次。
  2. prototype: 多例模式,对象用一次new一次。
  3. request: 应用在web项目中,Spring创建这个类后,将这个类存到request范围内。
  4. session: 应用在web项目中,Spring创建这个类后,将这个类存入到session范围内。
  5. globalsession: 应用在web项目中,必须在porlet环境下使用。在一个系统中登录后,在其他子系统中就不用登录了。比如登录了qq空间,就会自动登录qq邮箱。

Spring的XML和注解的整合开发

图片.png

Spring 的IOC控制反转的原理:

工作+反射+配置文件 实现程序解耦合


图片.png

工厂类

图片.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,504评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,434评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,089评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,378评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,472评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,506评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,519评论 3 413
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,292评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,738评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,022评论 2 329
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,194评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,873评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,536评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,162评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,413评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,075评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,080评论 2 352

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,646评论 18 139
  • 1.1 spring IoC容器和beans的简介 Spring 框架的最核心基础的功能是IoC(控制反转)容器,...
    simoscode阅读 6,708评论 2 22
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,797评论 6 342
  • 1.1 Spring IoC容器和bean简介 本章介绍了Spring Framework实现的控制反转(IoC)...
    起名真是难阅读 2,579评论 0 8
  • 哈哈,记得钟予以前经常起这样的名字。今天,我还真的不知道写点什么。好像也不是完全没感触,有的没有理清楚,有的觉得过...
    冠世墨玉yanzi阅读 183评论 0 1