21
21
import java .util .Set ;
22
22
import org .jetbrains .annotations .NotNull ;
23
23
import org .reflections .Reflections ;
24
+ import org .reflections .scanners .Scanners ;
24
25
import org .slf4j .Logger ;
25
26
import org .slf4j .LoggerFactory ;
26
27
import org .springframework .aot .hint .MemberCategory ;
@@ -55,38 +56,52 @@ public BeanFactoryInitializationAotContribution processAheadOfTime(
55
56
@ NotNull ConfigurableListableBeanFactory beanFactory ) {
56
57
return (generationContext , beanFactoryInitializationCode ) -> {
57
58
RuntimeHints hints = generationContext .getRuntimeHints ();
58
- String [] classNames =
59
- new String [] {
60
- "com.google.gson.JsonElement" , //
61
- "io.kubernetes.client.informer.cache.ProcessorListener" , //
62
- "io.kubernetes.client.extended.controller.Controller" , //
63
- "io.kubernetes.client.util.generic.GenericKubernetesApi$StatusPatch" , //
64
- "io.kubernetes.client.util.Watch$Response" //
65
- };
66
- for (String className : classNames ) {
67
- LOGGER .info ("registering {} for reflection" , className );
68
- hints .reflection ().registerType (TypeReference .of (className ), allMemberCategories );
69
- }
59
+ registerStaticClasses (hints );
60
+ registerModels (hints );
70
61
registerForPackage ("io.kubernetes" , hints );
71
- Collection <String > packages = AutoConfigurationPackages .get (beanFactory );
72
- for (String packageName : packages ) {
73
- registerForPackage (packageName , hints );
74
- }
62
+ registerAutoconfigurationPackages (beanFactory , hints );
75
63
};
76
64
}
77
65
66
+ private void registerStaticClasses (RuntimeHints hints ) {
67
+ Set <String > classNames = Set .of (
68
+ "com.google.gson.JsonElement" ,
69
+ "io.kubernetes.client.informer.cache.ProcessorListener" ,
70
+ "io.kubernetes.client.extended.controller.Controller" ,
71
+ "io.kubernetes.client.util.generic.GenericKubernetesApi$StatusPatch" ,
72
+ "io.kubernetes.client.util.Watch$Response"
73
+ );
74
+ for (String className : classNames ) {
75
+ LOGGER .info ("registering {} for reflection" , className );
76
+ hints .reflection ().registerType (TypeReference .of (className ), allMemberCategories );
77
+ }
78
+ }
79
+
80
+ private void registerModels (RuntimeHints hints ) {
81
+ Reflections reflections = new Reflections ("io.kubernetes.client.openapi.models" ,
82
+ Scanners .SubTypes .filterResultsBy (s -> true ));
83
+ Set <Class <?>> models = reflections .getSubTypesOf (Object .class );
84
+ LOGGER .info ("Found {} models" , models .size ());
85
+ registerClassesForReflection (models , hints );
86
+ }
87
+
78
88
private void registerForPackage (String packageName , RuntimeHints hints ) {
79
89
Reflections reflections = new Reflections (packageName );
80
- Set <Class <?>> apiModels = reflections .getTypesAnnotatedWith (ApiModel .class );
81
90
Set <Class <? extends Controller >> controllers = reflections .getSubTypesOf (Controller .class );
91
+ LOGGER .info ("Found {} controllers" , controllers .size ());
82
92
Set <Class <?>> jsonAdapters = findJsonAdapters (reflections );
93
+ LOGGER .info ("Found {} jsonAdapters" , jsonAdapters .size ());
83
94
Set <Class <?>> all = new HashSet <>();
84
95
all .addAll (jsonAdapters );
85
96
all .addAll (controllers );
86
- all .addAll (apiModels );
87
- for (Class <?> clazz : all ) {
88
- LOGGER .info ("registering {} for reflection" , clazz .getName ());
89
- hints .reflection ().registerType (clazz , allMemberCategories );
97
+ registerClassesForReflection (all , hints );
98
+ }
99
+
100
+ private void registerAutoconfigurationPackages (ConfigurableListableBeanFactory beanFactory ,
101
+ RuntimeHints hints ) {
102
+ Collection <String > packages = AutoConfigurationPackages .get (beanFactory );
103
+ for (String packageName : packages ) {
104
+ registerForPackage (packageName , hints );
90
105
}
91
106
}
92
107
@@ -102,4 +117,11 @@ private <R extends Annotation> Set<Class<?>> findJsonAdapters(Reflections reflec
102
117
}
103
118
return classes ;
104
119
}
120
+
121
+ private void registerClassesForReflection (Set <Class <?>> classes , RuntimeHints hints ) {
122
+ for (Class <?> clazz : classes ) {
123
+ LOGGER .info ("registering {} for reflection" , clazz );
124
+ hints .reflection ().registerType (clazz , allMemberCategories );
125
+ }
126
+ }
105
127
}
0 commit comments