• SPRING IN ACTION 第4版笔记-第四章Aspect-oriented Spring-001-什么是AOP


    一、

    Aspect就是把会在应用中的不同地方重复出现的非业务功能的模块化,比如日志、事务、安全、缓存

    In software development, functions that span multiple points of an application are
    called cross-cutting concerns. Typically, these cross-cutting concerns are conceptually
    separate from (but often embedded directly within) the application’s business logic.
    Separating these cross-cutting concerns from the business logic is where aspect-
    oriented programming ( AOP ) goes to work.

    DI helps you decouple application objects from
    each other, AOP helps you decouple cross-cutting concerns from the objects they
    affect.
    Logging is a common example of the application of aspects, but it’s not the only
    thing aspects are good for. Throughout this book, you’ll see several practical applica-
    tions of aspects, including declarative transactions, security, and caching.

    aspects help to modularize cross-cutting concerns. In short, a cross-
    cutting concern can be described as any functionality that affects multiple points of an
    application. Security, for example, is a cross-cutting concern, in that many methods in
    an application can have security rules applied to them. Figure 4.1 gives a visual depic-
    tion of cross-cutting concerns.
    This figure represents a typical application that’s broken down into modules.
    Each module’s main concern is to provide services for its particular domain. But each
    module also requires similar ancillary functionality, such as security and transaction
    management.

    A common object-oriented technique
    for reusing common functionality is to
    apply inheritance or delegation. But inheri-
    tance can lead to a brittle object hierarchy
    if the same base class is used throughout an
    application, and delegation can be cumber-
    some because complicated calls to the dele-
    gate object may be required.
    Aspects offer an alternative to inheri-
    tance and delegation that can be cleaner in
    many circumstances. With AOP , you still
    define the common functionality in one
    place, but you can declaratively define how and where this functionality is applied
    without having to modify the class to which you’re applying the new feature. Cross-
    cutting concerns can now be modularized into special classes called aspects. This has
    two benefits. First, the logic for each concern is in one place, as opposed to being scat-
    tered all over the code base. Second, your service modules are cleaner because they
    only contain code for their primary concern (or core functionality), and secondary
    concerns have been moved to aspects.

  • 相关阅读:
    爬虫时http错误提示
    json.dumps()和json.loads()
    scrapy框架原理学习
    利用tushare进行对兴业银行股价的爬取,并使用numpy进行分析
    随机生成60位同学成绩,并求他们的平均数,中位数,众数等
    numpy中random的使用
    matplotlib中subplot的使用
    使用matplotlib画饼图
    乔坟,乔坟!
    c#控件的动画显示效果
  • 原文地址:https://www.cnblogs.com/shamgod/p/5238257.html
Copyright © 2020-2023  润新知