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
2560f261
Commit
2560f261
authored
Mar 16, 2021
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.3.x' into 2.4.x
Closes gh-25692
parents
3e876ac8
017dbe60
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
DataSourceInitializer.java
...mework/boot/autoconfigure/jdbc/DataSourceInitializer.java
+2
-2
DataSourceInitializerInvokerTests.java
...autoconfigure/jdbc/DataSourceInitializerInvokerTests.java
+7
-3
No files found.
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceInitializer.java
View file @
2560f261
/*
* Copyright 2012-202
0
the original author or authors.
* Copyright 2012-202
1
the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
...
...
@@ -161,7 +161,7 @@ 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/DataSourceInitializerInvokerTests.java
View file @
2560f261
/*
* Copyright 2012-202
0
the original author or authors.
* Copyright 2012-202
1
the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
...
...
@@ -221,8 +221,10 @@ class DataSourceInitializerInvokerTests {
"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'."
);
});
}
...
...
@@ -233,8 +235,10 @@ class DataSourceInitializerInvokerTests {
"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