Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
e789840b
Commit
e789840b
authored
Oct 23, 2013
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust db type if postgres
parent
4b2cea72
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
.gitignore
.gitignore
+1
-0
BatchDatabaseInitializer.java
...rk/boot/autoconfigure/batch/BatchDatabaseInitializer.java
+3
-0
No files found.
.gitignore
View file @
e789840b
...
...
@@ -20,5 +20,6 @@ manifest.yml
MANIFEST.MF
settings.xml
activemq-data
overridedb.*
*.iml
.idea
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/batch/BatchDatabaseInitializer.java
View file @
e789840b
...
...
@@ -59,6 +59,9 @@ public class BatchDatabaseInitializer implements EnvironmentAware {
if
(
"hsql"
.
equals
(
platform
))
{
platform
=
"hsqldb"
;
}
if
(
"postgres"
.
equals
(
platform
))
{
platform
=
"postgresql"
;
}
ResourceDatabasePopulator
populator
=
new
ResourceDatabasePopulator
();
String
schemaLocation
=
this
.
environment
.
getProperty
(
"schema"
,
DEFAULT_SCHEMA_LOCATION
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment