You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
430 B
13 lines
430 B
|
|
#Enable H2 console
|
|
spring.h2.console.enabled=true
|
|
#Turn Statistics on
|
|
spring.jpa.properties.hibernate.generate_statistics=true
|
|
logging.level.org.hibernate.stat=debug
|
|
# Show all queries
|
|
spring.jpa.show-sql=true
|
|
spring.datasource.url=jdbc:h2:mem:contactsdb
|
|
spring.data.jpa.repositories.bootstrap-mode=default
|
|
spring.jpa.properties.hibernate.format_sql=true
|
|
logging.level.org.hibernate.type=trace
|
|
server.error.include-message=always
|