15 lines
397 B
Properties
15 lines
397 B
Properties
# H2
|
|
spring.h2.console.enabled=true
|
|
spring.h2.console.path=/h2-console
|
|
spring.datasource.driver-class-name=org.h2.Driver
|
|
spring.datasource.url=jdbc:h2:~/realworldDB
|
|
spring.datasource.username=sa
|
|
spring.datasource.password=
|
|
|
|
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
|
|
spring.jpa.hibernate.ddl-auto=create
|
|
spring.jpa.properties.hibernate.format_sql=true
|
|
spring.jpq.show-sql=true
|
|
|
|
|