62ae4794f5f0084487471023e36f42fd2153d402
[so.git] / mso-api-handlers / mso-requests-db / src / test / resources / application-test.yaml
1 # will be used as entry in DB to say SITE OFF/ON for healthcheck
2
3 server:
4     port: 8080
5     tomcat:
6         max-threads: 50
7 ssl-enable: false
8 mso:
9   adapters:
10     requestDb:
11       auth: Basic YnBlbDptc28tZGItMTUwNyE=
12       endpoint: http://localhost:8081
13   site-name: localDevEnv
14   logPath: logs
15 # H2
16 spring:
17   datasource:
18     url: jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;
19     username: sa
20     password: sa
21     driver-class-name: org.h2.Driver
22   h2:
23     console:
24       enabled: true
25       path: /h2
26
27   jpa:
28       show-sql: true
29       hibernate:
30         dialect: org.hibernate.dialect.MySQL5Dialect
31         ddl-auto: none
32         naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
33         enable-lazy-load-no-trans: true
34
35
36 #Actuator
37 management:
38   security:
39     enabled: false
40     basic:
41       enabled: false
42
43
44