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
a832cc9c
Commit
a832cc9c
authored
Mar 16, 2021
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish "Improve error message when no resources exist at a script location"
See gh-25620
parent
42841b89
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
DataSourceInitializer.java
...mework/boot/autoconfigure/jdbc/DataSourceInitializer.java
+1
-1
DataSourceInitializerInvokerTests.java
...autoconfigure/jdbc/DataSourceInitializerInvokerTests.java
+4
-4
No files found.
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceInitializer.java
View file @
a832cc9c
...
...
@@ -161,7 +161,7 @@ class DataSourceInitializer {
}
else
if
(
validate
)
{
throw
new
InvalidConfigurationPropertyValueException
(
propertyName
,
resource
,
"
Resource '"
+
location
+
"' 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 @
a832cc9c
...
...
@@ -223,8 +223,8 @@ class DataSourceInitializerInvokerTests {
assertThat
(
context
.
getStartupFailure
()).
isInstanceOf
(
BeanCreationException
.
class
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"[does/not/exist.sql]"
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"spring.datasource.schema"
);
assertThat
(
context
.
getStartupFailure
())
.
hasMessageContaining
(
"Resource 'classpath:does/not/exist.sql' does not exist
."
);
assertThat
(
context
.
getStartupFailure
())
.
hasMessageContaining
(
"No resources were found at location 'classpath:does/not/exist.sql'
."
);
});
}
...
...
@@ -237,8 +237,8 @@ class DataSourceInitializerInvokerTests {
assertThat
(
context
.
getStartupFailure
()).
isInstanceOf
(
BeanCreationException
.
class
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"[does/not/exist.sql]"
);
assertThat
(
context
.
getStartupFailure
()).
hasMessageContaining
(
"spring.datasource.data"
);
assertThat
(
context
.
getStartupFailure
())
.
hasMessageContaining
(
"Resource 'classpath:does/not/exist.sql' does not exist
."
);
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