zoukankan      html  css  js  c++  java
  • AOP

    Spring是什么?Spring是一个库,提供一个软件框架  目的:使软件之间的逻辑更加清晰,配置更加灵活  。Spring的手段就是AOP和IOC

    其中AOP在Java中是利用反射机制实现 (动态代理也是用反射机制实现的)

    AOP的本质:在一系纵向的控制流中把那些相同的子流程提取成一个横向的面叫aspect面

    以下是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: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/aop
            http://www.springframework.org/schema/aop/spring-aop-4.2.xsd">
           
            <bean id="helloWorldImpl1" class="com.xrq.aop.HelloWorldImpl1" />
            <bean id="helloWorldImpl2" class="com.xrq.aop.HelloWorldImpl2" />
            <bean id="timeHandler" class="com.xrq.aop.TimeHandler" />
           
            <aop:config>
                <aop:aspect id="time" ref="timeHandler">
                    <aop:pointcut id="addAllMethod" expression="execution(* com.xrq.aop.HelloWorld.*(..))" />
                    <aop:before method="printTime" pointcut-ref="addAllMethod" />
                    <aop:after method="printTime" pointcut-ref="addAllMethod" />
                </aop:aspect>
            </aop:config>
    </beans>

    总结很重要哦 方法得当,坚持会有奇迹哦
  • 相关阅读:
    mac允许安装任何来源的软件
    Xcode Edit Schemes
    认识下算法工程师
    一定要熟练地使用常用的Foundation服务
    常用的UI控件
    认识iOS系统架构
    深拷贝/浅拷贝的理解
    Create Fiori List App Report with ABAP CDS view – PART 1
    [転載]SAP S/4HANAトライアル環境でCDS Viewを確認
    ABAP CDS
  • 原文地址:https://www.cnblogs.com/sunyuhuan/p/8384231.html
Copyright © 2011-2022 走看看