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-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/batch/BatchAutoConfigurationTests.java
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,7 @@
67
67
*
68
68
* @author Dave Syer
69
69
* @author Stephane Nicoll
70
+
* @author Vedran Pavic
70
71
*/
71
72
publicclassBatchAutoConfigurationTests {
72
73
@@ -91,6 +92,8 @@ public void testDefaultContext() throws Exception {
Copy file name to clipboardExpand all lines: spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -847,7 +847,7 @@ content into your application; rather pick only the properties that you need.
847
847
spring.artemis.user= # Login user of the broker.
848
848
849
849
# SPRING BATCH ({sc-spring-boot-autoconfigure}/batch/BatchProperties.{sc-ext}[BatchProperties])
850
-
spring.batch.initializer.enabled=true # Create the required batch tables on startup if necessary.
850
+
spring.batch.initializer.enabled= # Create the required batch tables on startup if necessary. Enabled automatically if no custom table prefix is set or if a custom schema is configured.
851
851
spring.batch.job.enabled=true # Execute all Spring Batch jobs in the context on startup.
852
852
spring.batch.job.names= # Comma-separated list of job names to execute on startup (For instance `job1,job2`). By default, all Jobs found in the context are executed.
853
853
spring.batch.schema=classpath:org/springframework/batch/core/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.
0 commit comments