0
我使用AOP概念和調度呼叫發送到通知方法之前。在這方面,如何與出進入控制器之前,建議方法的返回值?如何返回值作爲@Before響應,出移動到(使用AOP)控制器
public Object cache(JoinPoint jointPoint, RedisCache redisCache) throws Throwable{
String data = getRedisService().getValue(redisKey);
if(data != null){return "hi";}
}