Spring 中的 AOP—基于注解的 AOP 配置

文章目录

    • 1.代码结构
    • 2.AccountService
    • 3.记录日志的工具类
    • 4.配置spring
    • 5.maven 配置
    • 6.测试类
    • 7.不使用 XML 的配置方式


1.代码结构

Spring 中的 AOP—基于注解的 AOP 配置_第1张图片

2.AccountService

IAccountService 代码如下:

package com

你可能感兴趣的:(JavaEE57)