-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathproductservice-dev.properties
More file actions
40 lines (33 loc) · 1.96 KB
/
productservice-dev.properties
File metadata and controls
40 lines (33 loc) · 1.96 KB
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
logging.level.com.cd826dong=DEBUG
# =====================================================================================================================
# == stream / kafka ==
# =====================================================================================================================
# spring.cloud.stream.bindings.input.destination=cd826-cloud-usertopic
# spring.cloud.stream.bindings.input.content-type=application/json
# spring.cloud.stream.bindings.input.group=productGroup
spring.cloud.stream.bindings.inboundUserMsg.destination=cd826-cloud-usertopic
spring.cloud.stream.bindings.inboundUserMsg.content-type=application/json
spring.cloud.stream.bindings.inboundUserMsg.group=productGroup
spring.cloud.stream.kafka.binder.brokers=localhost
spring.cloud.stream.kafka.binder.defaultBrokerPort=9092
spring.cloud.stream.kafka.binder.zkNodes=localhost
# =====================================================================================================================
# == Redis Config ==
# =====================================================================================================================
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=
spring.redis.database=0
spring.redis.timeout=3000
spring.redis.pool.max-active=100
spring.redis.pool.max-idle=20
spring.redis.pool.max-wait-millis=15000
# =============================================================================
# == H2 Datasource Properties ==
# =============================================================================
spring.jpa.database=H2
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.url=jdbc\:h2\:mem\:testdb;DB_CLOSE_DELAY=-1;
spring.datasource.username=sa
spring.datasource.password=
foo=Now, I'm changing...