gpt4 book ai didi

java - 在 Spring mvc Controller 上使用 Spring Aop

转载 作者:行者123 更新时间:2023-12-01 07:06:53 27 4
gpt4 key购买 nike

我有一个 Spring MVC Controller 抛出两种异常:

@RequestMapping(value = "forwardRefundApply",method = RequestMethod.GET)
public ModelAndView forwardRefundApply1(String ticketNbr)throws Exception {
if(true)
throw new Exception();
else
throw new ApplicationException("test");
}

然后我编写一个 AOP 类来处理异常,然后返回模型,如下所示:

  @Pointcut("execution(public * ..*(..))")
public void getRefundPointCut() {
}

@AfterThrowing(pointcut="getRefundPointCut()", throwing="e")
public ModelAndView throwException(Exception e){
ModelAndView mav = null;
if(e instanceof ApplicationException)
{

e.printStackTrace();
mav = new ModelAndView(CommonConstants.ERRORPAGE);
mav.addObject("errorMsg", "application error");
return mav;
}
else{
e.printStackTrace();

mav = new ModelAndView(CommonConstants.ERRORPAGE);
mav.addObject("errorMsg", "system error");
return mav;
}
}

aop 可以工作了。但结果是错误的。系统错误:

org.springframework.web.util.NestedServletException:处理程序处理失败;嵌套异常是 java.lang.NoSuchMethodError

Aspect 类是否无法将 ModelAndView 返回给 Controller?

最佳答案

在这种情况下为什么要使用 AOP? Spring 来了你需要的一切:

关于java - 在 Spring mvc Controller 上使用 Spring Aop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22031083/

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