-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbatch-service.yml
More file actions
50 lines (45 loc) · 945 Bytes
/
batch-service.yml
File metadata and controls
50 lines (45 loc) · 945 Bytes
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
41
42
43
44
45
46
47
48
49
50
#Server Configuration
server:
port: 10002
security:
basic:
enabled: false
eureka:
instance:
hostname: 68.98.162.173
# H2 during development
spring:
h2:
console:
enabled: true
path: /h2-console
application:
name: batch-service
# datasource:
# driver-class-name: oracle.jdbc.driver.OracleDriver
# url: jdbc:oracle:thin:@localhost:1521:xe
# username: GAMBIT
# password: p4ssw0rd
jpa:
# database-platform: org.hibernate.dialect.Oracle10gDialect
properties:
hibernate:
show_sql: true
use_sql_comments: true
format_sql: true
hibernate:
ddl-auto: none
kafka:
topic:
batch.register: batch.register.t
batch.update: batch.update.t
batch.delete: batch.delete.t
batch.uuid: batch.uuid.t
#Logging Configuration
logging:
level:
root: INFO
org:
springframework:
web: DEBUG
hibernate: INFO