You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/AbstractFallbackJCacheOperationSource.java
+28-14
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2021 the original author or authors.
2
+
* Copyright 2002-2024 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -27,14 +27,13 @@
27
27
importorg.springframework.aop.support.AopUtils;
28
28
importorg.springframework.core.MethodClassKey;
29
29
importorg.springframework.lang.Nullable;
30
+
importorg.springframework.util.ReflectionUtils;
30
31
31
32
/**
32
-
* Abstract implementation of {@link JCacheOperationSource} that caches attributes
33
+
* Abstract implementation of {@link JCacheOperationSource} that caches operations
33
34
* for methods and implements a fallback policy: 1. specific target method;
34
35
* 2. declaring method.
35
36
*
36
-
* <p>This implementation caches attributes by method after they are first used.
Copy file name to clipboardExpand all lines: spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/AnnotationJCacheOperationSource.java
+13-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2018 the original author or authors.
2
+
* Copyright 2002-2024 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
Copy file name to clipboardExpand all lines: spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/JCacheOperationSource.java
+34-2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2018 the original author or authors.
2
+
* Copyright 2002-2024 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -25,16 +25,48 @@
25
25
* cache operation attributes from standard JSR-107 annotations.
0 commit comments