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-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -261,9 +261,9 @@ Rather, pick only the properties that you need.
261
261
192\\.168\\.\\d{1,3}\\.\\d{1,3}|\\
262
262
169\\.254\\.\\d{1,3}\\.\\d{1,3}|\\
263
263
127\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\
264
-
172\\.1[6-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
265
-
172\\.2[0-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
266
-
172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3}\\
264
+
172\\.1[6-9]\{1}\\.\\d{1,3}\\.\\d{1,3}|\\
265
+
172\\.2[0-9]\{1}\\.\\d{1,3}\\.\\d{1,3}|\\
266
+
172\\.3[0-1]\{1}\\.\\d{1,3}\\.\\d{1,3}\\
267
267
0:0:0:0:0:0:0:1\\
268
268
::1 # Regular expression that matches proxies that are to be trusted.
269
269
server.tomcat.max-connections=10000 # Maximum number of connections that the server accepts and processes at any given time.
@@ -565,7 +565,7 @@ Rather, pick only the properties that you need.
565
565
spring.flyway.ignore-pending-migrations=false # Whether to ignore pending migrations when reading the schema history table.
566
566
spring.flyway.init-sqls= # SQL statements to execute to initialize a connection immediately after obtaining it.
567
567
spring.flyway.installed-by= # Username recorded in the schema history table as having applied the migration.
568
-
spring.flyway.locations=classpath:db/migration # Locations of migrations scripts. Can contain the special "{vendor}" placeholder to use vendor-specific locations.
568
+
spring.flyway.locations=classpath:db/migration # Locations of migrations scripts. Can contain the special "\{vendor}" placeholder to use vendor-specific locations.
569
569
spring.flyway.mixed=false # Whether to allow mixing transactional and non-transactional statements within the same migration.
570
570
spring.flyway.out-of-order=false # Whether to allow migrations to be run out of order.
571
571
spring.flyway.password= # Login password of the database to migrate.
@@ -730,7 +730,7 @@ Rather, pick only the properties that you need.
730
730
spring.datasource.jndi-name= # JNDI location of the datasource. Class, url, username & password are ignored when set.
731
731
spring.datasource.name= # Name of the datasource. Default to "testdb" when using an embedded database.
732
732
spring.datasource.password= # Login password of the database.
733
-
spring.datasource.platform=all # Platform to use in the DDL or DML scripts (such as schema-${platform}.sql or data-${platform}.sql).
733
+
spring.datasource.platform=all # Platform to use in the DDL or DML scripts (such as schema-$\{platform}.sql or data-$\{platform}.sql).
Rather than using `db/migration`, the preceding configuration sets the folder to use according to the type of the database (such as `db/migration/mysql` for MySQL).
0 commit comments