汪的爱琪 2023-08-21 11:33 采纳率: 67.5%
浏览 7
已结题

SSM的基于注解的aop失效

您看,当我点击运行的时候为什么没有织入呀
按照逻辑应该是先输出"我是前置通知"然后输出"输出了!"__

我的目标类Test1目标类有连接点show方法

package com.experience.test;
import org.springframework.stereotype.Repository;
import org.testng.annotations.Test;

/**
 * @author zhangsan
 */
@Repository
public class Test1 {
    @Test
    public void show(){
        System.out.println("输出了!");
    }
}


img

切入类和通知

package com.experience.aspect;

import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;

@Component
@Aspect
public class MyAspect {
    @Pointcut("execution(void com.experience.test.Test1.show())")
    private void method(){}
    @Before("method() ")
    public void show(){
        System.out.println("我是前置通知!");
    }
}


img


配置文件

<?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:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/aop
       https://www.springframework.org/schema/aop/spring-aop.xsd">
    <!--    开启注解扫描,扫描包-->
    <context:component-scan base-package="com.experience.service"/>
    <context:component-scan base-package="com.experience.test"/>
    <context:component-scan base-package="com.experience.aspect"/>
    <aop:aspectj-autoproxy/>
</beans>

img

img

img

  • 写回答

4条回答 默认 最新

  • Huazie 全栈领域优质创作者 2023-08-21 11:43
    关注

    因为你 Test1 并没有在 spring中作为bean被管理, 你的show方法是 单元测试方法, 并不是spring管理的类中的方法。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 8月26日
  • 已采纳回答 8月22日
  • 创建了问题 8月21日

悬赏问题

  • ¥15 没输出运行不了什么问题
  • ¥20 输入import torch显示Intel MKL FATAL ERROR,系统驱动1%,: Cannot load mkl_intel_thread.dll.
  • ¥15 点云密度大则包围盒小
  • ¥15 nginx使用nfs进行服务器的数据共享
  • ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
  • ¥15 51嵌入式入门按键小项目
  • ¥30 海外项目,如何降低Google Map接口费用?
  • ¥15 fluentmeshing
  • ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
  • ¥15 盘古气象大模型调用(python)