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>

    总结很重要哦 方法得当,坚持会有奇迹哦
  • 相关阅读:
    zookeeper集群 新手安装指南
    每天进步一点点--------归并算法
    JAVA读入流的相关常用方法
    解决maven 下载 hadoop-client 客户端 报错的问题
    Java中的阻塞队列
    Java多线程-工具篇-BlockingQueue
    Netty是什么?
    JAVA类加载和反射介绍
    博客迁移通知:本博客已迁移至 itoolsoft.org
    如何在Windows 10中重置和注销Linux子系统
  • 原文地址:https://www.cnblogs.com/sunyuhuan/p/8384231.html
Copyright © 2011-2022 走看看