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>

    总结很重要哦 方法得当,坚持会有奇迹哦
  • 相关阅读:
    语音识别算法阅读之CTC
    语音识别模型阅读之CLDNN
    声纹识别算法阅读之self-attentive x-vector
    Git链接两个远程仓库
    tortoisegit提交不到远程库问题解决记录
    安装 Git 命令之后,本地的工作区中的文件没有小图标解决办法
    .NET CLS(Common Language System)简介
    .NET CTS(Common Type System)简介
    C# 中间语言
    .NET 程序执行流程
  • 原文地址:https://www.cnblogs.com/sunyuhuan/p/8384231.html
Copyright © 2011-2022 走看看