mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-24 04:11:11 +00:00
#92 add some comments to switch from HSQLDB to MySQL
This commit is contained in:
parent
e0be3a39b6
commit
cb0504ee97
4 changed files with 28 additions and 28 deletions
|
|
@ -1,13 +0,0 @@
|
|||
================================================================================
|
||||
=== Spring PetClinic sample application - Database Configuration ===
|
||||
================================================================================
|
||||
|
||||
@author Costin Leau
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
In its default configuration, Petclinic uses an in-memory database (HSQLDB) which
|
||||
gets populated at startup with data. A similar setup is provided for Mysql in case
|
||||
a persistent database configuration is needed.
|
||||
Note that whenever the database type is changed, the data-access.properties file needs to
|
||||
be updated.
|
||||
|
|
@ -4,6 +4,12 @@
|
|||
# various application context XML files (e.g., "applicationContext-*.xml").
|
||||
# Targeted at system administrators, to avoid touching the context XML files.
|
||||
|
||||
# Properties that control the population of schema and data for a new data source
|
||||
jdbc.initLocation=classpath:db/hsqldb/initDB.sql
|
||||
jdbc.dataLocation=classpath:db/hsqldb/populateDB.sql
|
||||
|
||||
jpa.showSql=true
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# HSQL Settings
|
||||
|
||||
|
|
@ -12,14 +18,9 @@ jdbc.url=jdbc:hsqldb:mem:petclinic
|
|||
jdbc.username=sa
|
||||
jdbc.password=
|
||||
|
||||
# Properties that control the population of schema and data for a new data source
|
||||
jdbc.initLocation=classpath:db/hsqldb/initDB.sql
|
||||
jdbc.dataLocation=classpath:db/hsqldb/populateDB.sql
|
||||
|
||||
# Property that determines which database to use with an AbstractJpaVendorAdapter
|
||||
jpa.database=HSQL
|
||||
|
||||
jpa.showSql=true
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# MySQL Settings
|
||||
|
|
@ -27,15 +28,7 @@ jpa.showSql=true
|
|||
#jdbc.driverClassName=com.mysql.jdbc.Driver
|
||||
#jdbc.url=jdbc:mysql://localhost:3306/petclinic
|
||||
#jdbc.username=root
|
||||
#jdbc.password=
|
||||
|
||||
# Properties that control the population of schema and data for a new data source
|
||||
#jdbc.initLocation=classpath:db/mysql/initDB.sql
|
||||
#jdbc.dataLocation=classpath:db/mysql/populateDB.sql
|
||||
|
||||
# Property that determines which Hibernate dialect to use
|
||||
# (only applied with "applicationContext-hibernate.xml")
|
||||
#hibernate.dialect=org.hibernate.dialect.MySQLDialect
|
||||
#jdbc.password=petclinic
|
||||
|
||||
# Property that determines which database to use with an AbstractJpaVendorAdapter
|
||||
#jpa.database=MYSQL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue