From 19cbeba5cf958924a1f79bd4d9ed0959815e3be5 Mon Sep 17 00:00:00 2001 From: Justin Wolgamott Date: Thu, 23 May 2019 10:23:00 -0400 Subject: [PATCH] Updated MySQL configuration instructions to highlight the dependence between the default Derby datasource configuration and the integration tests --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 11db3ec..0b55070 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,8 @@ To configure the starter app to use MySQL, instead of the default Derby, update * datasource.url=jdbc:mysql://localhost:3306/hapi_dstu3 * hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect +Because the integration tests within the project rely on the default Derby database configuration, it is important to either explicity skip the integration tests during the build process, i.e., `mvn install -DskipTests`, or delete the tests altogether. Failure to skip or delete the tests once you've configured MySQL for the datasource.driver, datasource.url, and hibernate.dialect as outlined above will result in build errors and compilation failure. + It is important to use MySQL5Dialect when using MySQL version 5+. # Customizing The Web Testpage UI