File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
spring-batch-core/src/main/java/org/springframework/batch/core/aot Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 26
26
* {@link RuntimeHintsRegistrar} for Spring Batch core module.
27
27
*
28
28
* @author Glenn Renfro
29
+ * @author Mahmoud Ben Hassine
29
30
* @since 5.0
30
31
*/
31
32
public class CoreRuntimeHints implements RuntimeHintsRegistrar {
@@ -34,6 +35,16 @@ public class CoreRuntimeHints implements RuntimeHintsRegistrar {
34
35
public void registerHints (RuntimeHints hints , ClassLoader classLoader ) {
35
36
36
37
hints .resources ().registerPattern ("org/springframework/batch/core/schema-h2.sql" );
38
+ hints .resources ().registerPattern ("org/springframework/batch/core/schema-derby.sql" );
39
+ hints .resources ().registerPattern ("org/springframework/batch/core/schema-hsqldb.sql" );
40
+ hints .resources ().registerPattern ("org/springframework/batch/core/schema-sqlite.sql" );
41
+ hints .resources ().registerPattern ("org/springframework/batch/core/schema-db2.sql" );
42
+ hints .resources ().registerPattern ("org/springframework/batch/core/schema-hana.sql" );
43
+ hints .resources ().registerPattern ("org/springframework/batch/core/schema-mysql.sql" );
44
+ hints .resources ().registerPattern ("org/springframework/batch/core/schema-oracle.sql" );
45
+ hints .resources ().registerPattern ("org/springframework/batch/core/schema-postgresql.sql" );
46
+ hints .resources ().registerPattern ("org/springframework/batch/core/schema-sqlserver.sql" );
47
+ hints .resources ().registerPattern ("org/springframework/batch/core/schema-sybase.sql" );
37
48
38
49
hints .proxies ()
39
50
.registerJdkProxy (builder -> builder
You can’t perform that action at this time.
0 commit comments