Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ private String getAction(DataSourceBeanCreationException cause) {
StringBuilder action = new StringBuilder();
action.append(String.format("Consider the following:%n"));
if (EmbeddedDatabaseConnection.NONE == cause.getConnection()) {
action.append(String.format(
"\tIf you're using Testcontainers to set up your development datasource, consider starting the application from the test sources instead.%n"));
action.append(String
.format("\tIf you want an embedded database (H2, HSQL or Derby), please put it on the classpath.%n"));
}
Expand Down
Loading