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
b1f5f346
Commit
b1f5f346
authored
Mar 16, 2021
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.4.x'
Closes gh-25693
parents
43bc3d3b
2560f261
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
DataSourceInitializer.java
...mework/boot/autoconfigure/jdbc/DataSourceInitializer.java
+1
-1
DataSourceInitializationIntegrationTests.java
...figure/jdbc/DataSourceInitializationIntegrationTests.java
+6
-2
No files found.
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceInitializer.java
View file @
b1f5f346
...
...
@@ -152,7 +152,7 @@ public class DataSourceInitializer {
}
else
if
(
validate
)
{
throw
new
InvalidConfigurationPropertyValueException
(
propertyName
,
resource
,
"
The specified resource does not exist
."
);
"
No resources were found at location '"
+
location
+
"'
."
);
}
}
}
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/jdbc/DataSourceInitializationIntegrationTests.java
View file @
b1f5f346
...
...
@@ -231,8 +231,10 @@ class DataSourceInitializationIntegrationTests {
"spring.datasource.schema:classpath:does/not/exist.sql"
).
run
((
context
)
->
{
assertThat
(
context
).
hasFailed
();
assertThat
(
context
.
getStartupFailure
()).
isInstanceOf
(
BeanCreationException
.
class
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"
does/not/exist.sql
"
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"
[does/not/exist.sql]
"
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"spring.datasource.schema"
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"No resources were found at location 'classpath:does/not/exist.sql'."
);
});
}
...
...
@@ -243,8 +245,10 @@ class DataSourceInitializationIntegrationTests {
"spring.datasource.data:classpath:does/not/exist.sql"
).
run
((
context
)
->
{
assertThat
(
context
).
hasFailed
();
assertThat
(
context
.
getStartupFailure
()).
isInstanceOf
(
BeanCreationException
.
class
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"
does/not/exist.sql
"
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"
[does/not/exist.sql]
"
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"spring.datasource.data"
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"No resources were found at location 'classpath:does/not/exist.sql'."
);
});
}
...
...
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