gpt4 book ai didi

java - 通过 Controller 拦截 Aspect 方法

转载 作者:行者123 更新时间:2023-12-02 04:05:50 25 4
gpt4 key购买 nike

我有一个带有 to 方法的 Spring mvc Controller :

@RequestMapping(value = "/method1", method = GET) 
public A method1() throws Exception
{
return new A();
}

@RequestMapping(value = "/method2", method = GET) 
public int method2() throws Exception
{
return -1;
}

我想用一个方面拦截这些方法:

@Before("execution(** com.test.controller.*(..))")
public void startLog()
{
System.out.println("START");
}

此方面在 method1 中工作正常,在 method2 中失败。我做错了什么?

最佳答案

具有@RequestMapping注释的特定包中方法的切入点表达式:

@Before("execution(* com.test.controller.*.*(..)) && @annotation(org.springframework.web.bind.annotation.RequestMapping)")
public void startLog()
{
System.out.println("START");
}

关于java - 通过 Controller 拦截 Aspect 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34286720/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com