File tree Expand file tree Collapse file tree 4 files changed +9
-0
lines changed
spring-context/src/main/java/org/springframework/cache/annotation Expand file tree Collapse file tree 4 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 23
23
import java .lang .annotation .RetentionPolicy ;
24
24
import java .lang .annotation .Target ;
25
25
26
+ import org .springframework .aot .hint .annotation .Reflective ;
26
27
import org .springframework .core .annotation .AliasFor ;
27
28
28
29
/**
42
43
@ Retention (RetentionPolicy .RUNTIME )
43
44
@ Inherited
44
45
@ Documented
46
+ @ Reflective
45
47
public @interface CacheEvict {
46
48
47
49
/**
Original file line number Diff line number Diff line change 23
23
import java .lang .annotation .RetentionPolicy ;
24
24
import java .lang .annotation .Target ;
25
25
26
+ import org .springframework .aot .hint .annotation .Reflective ;
26
27
import org .springframework .core .annotation .AliasFor ;
27
28
28
29
/**
50
51
@ Retention (RetentionPolicy .RUNTIME )
51
52
@ Inherited
52
53
@ Documented
54
+ @ Reflective
53
55
public @interface CachePut {
54
56
55
57
/**
Original file line number Diff line number Diff line change 24
24
import java .lang .annotation .Target ;
25
25
import java .util .concurrent .Callable ;
26
26
27
+ import org .springframework .aot .hint .annotation .Reflective ;
27
28
import org .springframework .core .annotation .AliasFor ;
28
29
29
30
/**
58
59
@ Retention (RetentionPolicy .RUNTIME )
59
60
@ Inherited
60
61
@ Documented
62
+ @ Reflective
61
63
public @interface Cacheable {
62
64
63
65
/**
Original file line number Diff line number Diff line change 23
23
import java .lang .annotation .RetentionPolicy ;
24
24
import java .lang .annotation .Target ;
25
25
26
+ import org .springframework .aot .hint .annotation .Reflective ;
27
+
26
28
/**
27
29
* Group annotation for multiple cache annotations (of different or the same type).
28
30
*
37
39
@ Retention (RetentionPolicy .RUNTIME )
38
40
@ Inherited
39
41
@ Documented
42
+ @ Reflective
40
43
public @interface Caching {
41
44
42
45
Cacheable [] cacheable () default {};
You can’t perform that action at this time.
0 commit comments