blob: c8e90c3d8b51919f5565f0694bdca486435755bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# will be used as entry in DB to say SITE OFF/ON for healthcheck
server:
port: 8080
tomcat:
max-threads: 50
ssl-enable: false
mso:
site-name: localDevEnv
logPath: logs
# H2
spring:
datasource:
url: jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;
username: sa
password: sa
driver-class-name: org.h2.Driver
h2:
console:
enabled: true
path: /h2
jpa:
show-sql: true
hibernate:
dialect: org.hibernate.dialect.MySQL5Dialect
ddl-auto: none
naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
enable-lazy-load-no-trans: true
#Actuator
management:
security:
enabled: false
basic:
enabled: false
|