Merge branch '6.1.x'

This commit is contained in:
Sam Brannen
2024-09-04 17:30:49 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -609,7 +609,7 @@ abstract class AbstractProxyTargetClassConfig {
@Aspect
static class SupplierAdvice {
@Around("execution(public * org.springframework.aop.aspectj.autoproxy..*.*(..))")
@Around("execution(* java.util.function.Supplier+.get())")
Object aroundSupplier(ProceedingJoinPoint joinPoint) throws Throwable {
return "advised: " + joinPoint.proceed();
}