From 0f5449d15cf579dc3c2bdc4d64166b7dbe0a2c18 Mon Sep 17 00:00:00 2001 From: cjayarathne Date: Thu, 12 Nov 2015 12:48:38 -0500 Subject: [PATCH] Update data-access.properties --- .../resources/spring/data-access.properties | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/resources/spring/data-access.properties b/src/main/resources/spring/data-access.properties index e154d81db..234d3783a 100644 --- a/src/main/resources/spring/data-access.properties +++ b/src/main/resources/spring/data-access.properties @@ -13,22 +13,22 @@ jpa.showSql=true #------------------------------------------------------------------------------- # HSQL Settings -jdbc.driverClassName=org.hsqldb.jdbcDriver -jdbc.url=jdbc:hsqldb:mem:petclinic -jdbc.username=sa -jdbc.password= +#jdbc.driverClassName=org.hsqldb.jdbcDriver +#jdbc.url=jdbc:hsqldb:mem:petclinic +#jdbc.username=sa +#jdbc.password= # Property that determines which database to use with an AbstractJpaVendorAdapter -jpa.database=HSQL +#jpa.database=HSQL #------------------------------------------------------------------------------- # MySQL Settings -#jdbc.driverClassName=com.mysql.jdbc.Driver -#jdbc.url=jdbc:mysql://localhost:3306/petclinic -#jdbc.username=root -#jdbc.password=petclinic +jdbc.driverClassName=com.mysql.jdbc.Driver +jdbc.url=jdbc:mysql://localhost:3306/petclinic +jdbc.username=root +jdbc.password=petclinic # Property that determines which database to use with an AbstractJpaVendorAdapter -#jpa.database=MYSQL +jpa.database=MYSQL