source: src/main/resources/application.properties@ 33d4f5d

Last change on this file since 33d4f5d was b31afbd, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

fixed some bugs and finalized user registration

  • Property mode set to 100644
File size: 514 bytes
Line 
1server.port=9090
2
3spring.datasource.url=jdbc:h2:mem:testdb
4spring.datasource.driver-class-name=org.h2.Driver
5
6spring.datasource.username=sa
7spring.datasource.password=
8
9spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
10
11spring.h2.console.enabled=true
12spring.h2.console.path=/h2
13
14spring.jpa.properties.hibernate.show_sql=true
15spring.jpa.properties.hibernate.use_sql_comments=true
16spring.jpa.properties.hibernate.format_sql=true
17
18logging.level.org.hibernate.type=trace
19spring.jpa.hibernate.ddl-auto=create
Note: See TracBrowser for help on using the repository browser.