15 lines
558 B
Properties
15 lines
558 B
Properties
spring.datasource.url=jdbc:h2:mem:mydb
|
|
spring.datasource.driverClassName=org.h2.Driver
|
|
spring.datasource.username=sa
|
|
spring.datasource.password=
|
|
spring.jpa.defer-datasource-initialization=true
|
|
spring.jpa.hibernate.ddl-auto=create-drop
|
|
spring.jpa.show-sql=false
|
|
spring.jpa.properties.hibernate.format_sql=true
|
|
spring.jpa.properties.hibernate.validator.apply_to_ddl=false
|
|
spring.jpa.properties.hibernate.globally_quoted_identifiers=true
|
|
|
|
#spring.jpa.properties.hibernate.check_nullability=true
|
|
spring.h2.console.enabled=true
|
|
spring.h2.console.path=/h2-console
|