38 lines
No EOL
714 B
YAML
38 lines
No EOL
714 B
YAML
spring:
|
|
application:
|
|
name: proj-acquirex
|
|
datasource:
|
|
url: jdbc:h2:mem:acquirex;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
|
|
driver-class-name: org.h2.Driver
|
|
username: sa
|
|
password:
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: create-drop
|
|
show-sql: true
|
|
properties:
|
|
hibernate:
|
|
format_sql: true
|
|
dialect: org.hibernate.dialect.H2Dialect
|
|
h2:
|
|
console:
|
|
enabled: true
|
|
path: /h2-console
|
|
|
|
server:
|
|
port: 8080
|
|
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: health,info,metrics
|
|
endpoint:
|
|
health:
|
|
show-details: when_authorized
|
|
|
|
logging:
|
|
level:
|
|
com.acquirex: DEBUG
|
|
org.springframework.web: INFO
|
|
org.hibernate.SQL: DEBUG |