Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
毛树良
/
VVAS-DataCenter-DBWriter
Go to a project
Project
Repository
Merge Requests
0
Pipelines
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 4f7cf1fb
authored
Aug 21, 2025
by
wenshuaiying
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
替换topic的名字及配置key
1 parent
c8f1cb7b
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
67 additions
and
67 deletions
src/main/java/com/viontech/keliu/consumer/MallDataStatisticsConsumer.java
src/main/java/com/viontech/keliu/consumer/MallFaceCaptureConsumer.java
src/main/java/com/viontech/keliu/consumer/MallGateMinuteCountDataConsumer.java
src/main/java/com/viontech/keliu/consumer/MallPersonLabelConsumer.java
src/main/java/com/viontech/keliu/consumer/MallRetryFaceCaptureConsumer.java
src/main/java/com/viontech/keliu/consumer/MallRetryPersonLabelConsumer.java
src/main/java/com/viontech/keliu/consumer/MallZoneMinuteCountDataConsumer.java
src/main/resources/application.properties
src/main/java/com/viontech/keliu/consumer/MallDataStatisticsConsumer.java
View file @
4f7cf1f
...
@@ -29,21 +29,21 @@ public class MallDataStatisticsConsumer {
...
@@ -29,21 +29,21 @@ public class MallDataStatisticsConsumer {
@Autowired
@Autowired
private
ObjectMapper
objectMapper
;
private
ObjectMapper
objectMapper
;
@Value
(
"${vion.consumer.
mall
DataStatistics.reidUrl:}"
)
@Value
(
"${vion.consumer.
store
DataStatistics.reidUrl:}"
)
private
String
reidUrl
;
private
String
reidUrl
;
@Value
(
"${vion.consumer.
mall
DataStatistics.zoneNum:true}"
)
@Value
(
"${vion.consumer.
store
DataStatistics.zoneNum:true}"
)
private
boolean
zoneNumEnable
;
private
boolean
zoneNumEnable
;
@Value
(
"${vion.consumer.
mall
DataStatistics.payEvent:false}"
)
@Value
(
"${vion.consumer.
store
DataStatistics.payEvent:false}"
)
private
boolean
payEventEnable
;
private
boolean
payEventEnable
;
private
ExecutorService
executorService
=
ThreadUtil
.
newFixedExecutor
(
1
,
1024
,
"dataStatistics-"
,
true
);
private
ExecutorService
executorService
=
ThreadUtil
.
newFixedExecutor
(
1
,
1024
,
"dataStatistics-"
,
true
);
@KafkaListener
(
topics
=
KafkaConstants
.
STORE_DATA_STATISTICS_TOPIC
@KafkaListener
(
topics
=
KafkaConstants
.
STORE_DATA_STATISTICS_TOPIC
,
autoStartup
=
"${vion.consumer.
mall
DataStatistics.autoStartup:false}"
,
autoStartup
=
"${vion.consumer.
store
DataStatistics.autoStartup:false}"
,
groupId
=
"
Mall
DataStiatistics"
,
groupId
=
"
Store
DataStiatistics"
,
concurrency
=
"${vion.consumer.
mall
DataStatistics.concurrency:1}"
)
,
concurrency
=
"${vion.consumer.
store
DataStatistics.concurrency:1}"
)
public
void
consumerMallZoneMinuteCount
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Acknowledgment
ack
)
{
public
void
consumerMallZoneMinuteCount
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Acknowledgment
ack
)
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
return
;
return
;
...
@@ -61,18 +61,18 @@ public class MallDataStatisticsConsumer {
...
@@ -61,18 +61,18 @@ public class MallDataStatisticsConsumer {
try
{
try
{
MallDataStatisticsInfo
mallDataStatisticsInfo
=
objectMapper
.
readValue
(
consumerRecord
.
value
(),
MallDataStatisticsInfo
.
class
);
MallDataStatisticsInfo
mallDataStatisticsInfo
=
objectMapper
.
readValue
(
consumerRecord
.
value
(),
MallDataStatisticsInfo
.
class
);
executorService
.
execute
(()
->
{
executorService
.
execute
(()
->
{
log
.
info
(
"处理
mall
DataStatisticsInfo,mallId:{},countDate:{}, 开始"
,
mallDataStatisticsInfo
.
getMallId
(),
mallDataStatisticsInfo
.
getCountDate
());
log
.
info
(
"处理
store
DataStatisticsInfo,mallId:{},countDate:{}, 开始"
,
mallDataStatisticsInfo
.
getMallId
(),
mallDataStatisticsInfo
.
getCountDate
());
execDataStatistics
(
mallDataStatisticsInfo
);
execDataStatistics
(
mallDataStatisticsInfo
);
});
});
// execDataStatistics(mallDataStatisticsInfo);
// execDataStatistics(mallDataStatisticsInfo);
}
catch
(
Exception
ee
)
{
}
catch
(
Exception
ee
)
{
log
.
error
(
"处理
mall
DataStatisticsInfo[{}], JsonDeserializerThrowable={}"
,
entry
.
getKey
(),
ee
.
getMessage
(),
ee
);
log
.
error
(
"处理
store
DataStatisticsInfo[{}], JsonDeserializerThrowable={}"
,
entry
.
getKey
(),
ee
.
getMessage
(),
ee
);
}
}
}
}
}
}
log
.
info
(
"处理
mall
DataStatisticsInfo[{}], batchHandle耗时:{} ms"
,
entry
.
getKey
(),
System
.
currentTimeMillis
()
-
startTime
);
log
.
info
(
"处理
store
DataStatisticsInfo[{}], batchHandle耗时:{} ms"
,
entry
.
getKey
(),
System
.
currentTimeMillis
()
-
startTime
);
}
catch
(
Throwable
e
)
{
}
catch
(
Throwable
e
)
{
log
.
error
(
"处理
mall
DataStatisticsInfo[{}], Throwable={}"
,
entry
.
getKey
(),
e
.
getMessage
(),
e
);
log
.
error
(
"处理
store
DataStatisticsInfo[{}], Throwable={}"
,
entry
.
getKey
(),
e
.
getMessage
(),
e
);
}
}
}
}
}
catch
(
Throwable
exx
)
{
}
catch
(
Throwable
exx
)
{
...
...
src/main/java/com/viontech/keliu/consumer/MallFaceCaptureConsumer.java
View file @
4f7cf1f
...
@@ -31,11 +31,11 @@ import java.util.stream.Collectors;
...
@@ -31,11 +31,11 @@ import java.util.stream.Collectors;
@Component
@Component
@Slf4j
@Slf4j
public
class
MallFaceCaptureConsumer
{
public
class
MallFaceCaptureConsumer
{
@Value
(
"${vion.consumer.
mall
FaceCapture.batchEnable:0}"
)
@Value
(
"${vion.consumer.
store
FaceCapture.batchEnable:0}"
)
private
Integer
batchEnable
;
private
Integer
batchEnable
;
@Value
(
"${vion.consumer.
mall
FaceCapture.batchSize:0}"
)
@Value
(
"${vion.consumer.
store
FaceCapture.batchSize:0}"
)
private
Integer
batchSize
;
private
Integer
batchSize
;
@Value
(
"${vion.consumer.
mall
FaceCapture.batchThreadNum:0}"
)
@Value
(
"${vion.consumer.
store
FaceCapture.batchThreadNum:0}"
)
private
Integer
batchThreadNum
;
private
Integer
batchThreadNum
;
@Autowired
@Autowired
private
ObjectMapper
objectMapper
;
private
ObjectMapper
objectMapper
;
...
@@ -46,10 +46,10 @@ public class MallFaceCaptureConsumer {
...
@@ -46,10 +46,10 @@ public class MallFaceCaptureConsumer {
@Resource
@Resource
private
SpeedStatService
speedStatService
;
private
SpeedStatService
speedStatService
;
@KafkaListener
(
topicPattern
=
"
Mall
_FaceCapture_.*"
@KafkaListener
(
topicPattern
=
"
Store
_FaceCapture_.*"
,
autoStartup
=
"${vion.consumer.
mall
FaceCapture.autoStartup:false}"
,
autoStartup
=
"${vion.consumer.
Store
FaceCapture.autoStartup:false}"
,
groupId
=
"
Mall
FaceCaptureToDb"
,
groupId
=
"
Store
FaceCaptureToDb"
,
concurrency
=
"${vion.consumer.
mall
FaceCapture.concurrency:1}"
)
,
concurrency
=
"${vion.consumer.
store
FaceCapture.concurrency:1}"
)
public
void
consumerMallFaceCapture
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Consumer
<?,
?>
consumer
)
{
public
void
consumerMallFaceCapture
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Consumer
<?,
?>
consumer
)
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
return
;
return
;
...
...
src/main/java/com/viontech/keliu/consumer/MallGateMinuteCountDataConsumer.java
View file @
4f7cf1f
...
@@ -26,9 +26,9 @@ import java.util.stream.Collectors;
...
@@ -26,9 +26,9 @@ import java.util.stream.Collectors;
@Slf4j
@Slf4j
@Component
@Component
public
class
MallGateMinuteCountDataConsumer
{
public
class
MallGateMinuteCountDataConsumer
{
@Value
(
"${vion.consumer.
mall
GateMinuteCount.batchSize:20}"
)
@Value
(
"${vion.consumer.
store
GateMinuteCount.batchSize:20}"
)
private
Integer
batchSize
;
private
Integer
batchSize
;
@Value
(
"${vion.consumer.
mall
GateMinuteCount.batchThreadNum:5}"
)
@Value
(
"${vion.consumer.
store
GateMinuteCount.batchThreadNum:5}"
)
private
Integer
batchThreadNum
;
private
Integer
batchThreadNum
;
@Autowired
@Autowired
private
ObjectMapper
objectMapper
;
private
ObjectMapper
objectMapper
;
...
@@ -38,9 +38,9 @@ public class MallGateMinuteCountDataConsumer {
...
@@ -38,9 +38,9 @@ public class MallGateMinuteCountDataConsumer {
private
SpeedStatService
speedStatService
;
private
SpeedStatService
speedStatService
;
@KafkaListener
(
topics
=
KafkaConstants
.
STORE_GATE_MINUTE_COUNT_DATA_TOPIC
@KafkaListener
(
topics
=
KafkaConstants
.
STORE_GATE_MINUTE_COUNT_DATA_TOPIC
,
autoStartup
=
"${vion.consumer.
mall
GateMinuteCount.autoStartup:false}"
,
autoStartup
=
"${vion.consumer.
store
GateMinuteCount.autoStartup:false}"
,
groupId
=
"MallGateMinuteCountToDb"
,
groupId
=
"MallGateMinuteCountToDb"
,
concurrency
=
"${vion.consumer.
mall
GateMinuteCount.concurrency:1}"
)
,
concurrency
=
"${vion.consumer.
store
GateMinuteCount.concurrency:1}"
)
public
void
consumerMallGateMinuteCount
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Acknowledgment
ack
)
{
public
void
consumerMallGateMinuteCount
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Acknowledgment
ack
)
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
return
;
return
;
...
...
src/main/java/com/viontech/keliu/consumer/MallPersonLabelConsumer.java
View file @
4f7cf1f
...
@@ -31,11 +31,11 @@ import java.util.stream.Collectors;
...
@@ -31,11 +31,11 @@ import java.util.stream.Collectors;
@Component
@Component
@Slf4j
@Slf4j
public
class
MallPersonLabelConsumer
{
public
class
MallPersonLabelConsumer
{
@Value
(
"${vion.consumer.
mall
PersonLabel.batchEnable:0}"
)
@Value
(
"${vion.consumer.
store
PersonLabel.batchEnable:0}"
)
private
Integer
batchEnable
;
private
Integer
batchEnable
;
@Value
(
"${vion.consumer.
mall
PersonLabel.batchSize:0}"
)
@Value
(
"${vion.consumer.
store
PersonLabel.batchSize:0}"
)
private
Integer
batchSize
;
private
Integer
batchSize
;
@Value
(
"${vion.consumer.
mall
PersonLabel.batchThreadNum:0}"
)
@Value
(
"${vion.consumer.
store
PersonLabel.batchThreadNum:0}"
)
private
Integer
batchThreadNum
;
private
Integer
batchThreadNum
;
@Autowired
@Autowired
private
ObjectMapper
objectMapper
;
private
ObjectMapper
objectMapper
;
...
@@ -46,10 +46,10 @@ public class MallPersonLabelConsumer {
...
@@ -46,10 +46,10 @@ public class MallPersonLabelConsumer {
@Resource
@Resource
private
SpeedStatService
speedStatService
;
private
SpeedStatService
speedStatService
;
@KafkaListener
(
topicPattern
=
"
Mall
_PersonLabel_.*"
@KafkaListener
(
topicPattern
=
"
Store
_PersonLabel_.*"
,
autoStartup
=
"${vion.consumer.
mall
PersonLabel.autoStartup:false}"
,
autoStartup
=
"${vion.consumer.
store
PersonLabel.autoStartup:false}"
,
groupId
=
"
Mall
PersonLabelToDb"
,
groupId
=
"
Store
PersonLabelToDb"
,
concurrency
=
"${vion.consumer.
mall
PersonLabel.concurrency:1}"
)
,
concurrency
=
"${vion.consumer.
store
PersonLabel.concurrency:1}"
)
public
void
consumerMallPersonLabel
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Consumer
<?,
?>
consumer
)
{
public
void
consumerMallPersonLabel
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Consumer
<?,
?>
consumer
)
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
return
;
return
;
...
...
src/main/java/com/viontech/keliu/consumer/MallRetryFaceCaptureConsumer.java
View file @
4f7cf1f
...
@@ -34,9 +34,9 @@ public class MallRetryFaceCaptureConsumer {
...
@@ -34,9 +34,9 @@ public class MallRetryFaceCaptureConsumer {
private
SpeedStatService
speedStatService
;
private
SpeedStatService
speedStatService
;
@KafkaListener
(
topics
=
KafkaConstants
.
TOPIC_STORE_RETRY_FACECAPTURE
@KafkaListener
(
topics
=
KafkaConstants
.
TOPIC_STORE_RETRY_FACECAPTURE
,
autoStartup
=
"${vion.consumer.
mall
RetryFaceCapture.autoStartup:false}"
,
autoStartup
=
"${vion.consumer.
store
RetryFaceCapture.autoStartup:false}"
,
groupId
=
"
Mall
RetryFaceCaptureToDb"
,
groupId
=
"
Store
RetryFaceCaptureToDb"
,
concurrency
=
"${vion.consumer.
mall
RetryFaceCapture.concurrency:1}"
)
,
concurrency
=
"${vion.consumer.
store
RetryFaceCapture.concurrency:1}"
)
public
void
consumerMallRetryFaceCapture
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Consumer
<?,
?>
consumer
)
{
public
void
consumerMallRetryFaceCapture
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Consumer
<?,
?>
consumer
)
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
return
;
return
;
...
...
src/main/java/com/viontech/keliu/consumer/MallRetryPersonLabelConsumer.java
View file @
4f7cf1f
...
@@ -34,9 +34,9 @@ public class MallRetryPersonLabelConsumer {
...
@@ -34,9 +34,9 @@ public class MallRetryPersonLabelConsumer {
private
SpeedStatService
speedStatService
;
private
SpeedStatService
speedStatService
;
@KafkaListener
(
topics
=
KafkaConstants
.
TOPIC_STORE_RETRY_PERSONLABEL
@KafkaListener
(
topics
=
KafkaConstants
.
TOPIC_STORE_RETRY_PERSONLABEL
,
autoStartup
=
"${vion.consumer.
mall
RetryPersonLabel.autoStartup:false}"
,
autoStartup
=
"${vion.consumer.
store
RetryPersonLabel.autoStartup:false}"
,
groupId
=
"
Mall
RetryPersonLabelToDb"
,
groupId
=
"
Store
RetryPersonLabelToDb"
,
concurrency
=
"${vion.consumer.
mall
RetryPersonLabel.concurrency:1}"
)
,
concurrency
=
"${vion.consumer.
store
RetryPersonLabel.concurrency:1}"
)
public
void
consumerMallRetryPersonLabel
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Consumer
<?,
?>
consumer
)
{
public
void
consumerMallRetryPersonLabel
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Consumer
<?,
?>
consumer
)
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
return
;
return
;
...
...
src/main/java/com/viontech/keliu/consumer/MallZoneMinuteCountDataConsumer.java
View file @
4f7cf1f
...
@@ -26,9 +26,9 @@ import java.util.stream.Collectors;
...
@@ -26,9 +26,9 @@ import java.util.stream.Collectors;
@Slf4j
@Slf4j
@Component
@Component
public
class
MallZoneMinuteCountDataConsumer
{
public
class
MallZoneMinuteCountDataConsumer
{
@Value
(
"${vion.consumer.
mall
ZoneMinuteCount.batchSize:20}"
)
@Value
(
"${vion.consumer.
store
ZoneMinuteCount.batchSize:20}"
)
private
Integer
batchSize
;
private
Integer
batchSize
;
@Value
(
"${vion.consumer.
mall
ZoneMinuteCount.batchThreadNum:5}"
)
@Value
(
"${vion.consumer.
store
ZoneMinuteCount.batchThreadNum:5}"
)
private
Integer
batchThreadNum
;
private
Integer
batchThreadNum
;
@Autowired
@Autowired
private
ObjectMapper
objectMapper
;
private
ObjectMapper
objectMapper
;
...
@@ -38,9 +38,9 @@ public class MallZoneMinuteCountDataConsumer {
...
@@ -38,9 +38,9 @@ public class MallZoneMinuteCountDataConsumer {
private
SpeedStatService
speedStatService
;
private
SpeedStatService
speedStatService
;
@KafkaListener
(
topics
=
KafkaConstants
.
STORE_ZONE_MINUTE_COUNT_DATA_TOPIC
@KafkaListener
(
topics
=
KafkaConstants
.
STORE_ZONE_MINUTE_COUNT_DATA_TOPIC
,
autoStartup
=
"${vion.consumer.
mall
ZoneMinuteCount.autoStartup:false}"
,
autoStartup
=
"${vion.consumer.
store
ZoneMinuteCount.autoStartup:false}"
,
groupId
=
"
Mall
ZoneMinuteCountToDb"
,
groupId
=
"
Store
ZoneMinuteCountToDb"
,
concurrency
=
"${vion.consumer.
mall
ZoneMinuteCount.concurrency:1}"
)
,
concurrency
=
"${vion.consumer.
store
ZoneMinuteCount.concurrency:1}"
)
public
void
consumerMallZoneMinuteCount
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Acknowledgment
ack
)
{
public
void
consumerMallZoneMinuteCount
(
List
<
ConsumerRecord
<
String
,
String
>>
recordList
,
Acknowledgment
ack
)
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
if
(
CollectionUtils
.
isEmpty
(
recordList
))
{
return
;
return
;
...
...
src/main/resources/application.properties
View file @
4f7cf1f
...
@@ -50,35 +50,35 @@ vion.topicCleanup.cron=0 0 1 * * ?
...
@@ -50,35 +50,35 @@ vion.topicCleanup.cron=0 0 1 * * ?
# topic consumer config
# topic consumer config
# FaceCapture
# FaceCapture
vion.consumer.
mall
FaceCapture.autoStartup
=
true
vion.consumer.
store
FaceCapture.autoStartup
=
true
vion.consumer.
mall
FaceCapture.concurrency
=
1
vion.consumer.
store
FaceCapture.concurrency
=
1
vion.consumer.
mall
FaceCapture.batchEnable
=
1
vion.consumer.
store
FaceCapture.batchEnable
=
1
vion.consumer.
mall
FaceCapture.batchSize
=
100
vion.consumer.
store
FaceCapture.batchSize
=
100
vion.consumer.
mall
FaceCapture.batchThreadNum
=
10
vion.consumer.
store
FaceCapture.batchThreadNum
=
10
vion.consumer.
mall
RetryFaceCapture.autoStartup
=
false
vion.consumer.
store
RetryFaceCapture.autoStartup
=
false
vion.consumer.
mall
RetryFaceCapture.concurrency
=
1
vion.consumer.
store
RetryFaceCapture.concurrency
=
1
# PersonLabel
# PersonLabel
vion.consumer.
mall
PersonLabel.autoStartup
=
false
vion.consumer.
store
PersonLabel.autoStartup
=
false
vion.consumer.
mall
PersonLabel.concurrency
=
1
vion.consumer.
store
PersonLabel.concurrency
=
1
vion.consumer.
mall
PersonLabel.batchEnable
=
1
vion.consumer.
store
PersonLabel.batchEnable
=
1
vion.consumer.
mall
PersonLabel.batchSize
=
100
vion.consumer.
store
PersonLabel.batchSize
=
100
vion.consumer.
mall
PersonLabel.batchThreadNum
=
10
vion.consumer.
store
PersonLabel.batchThreadNum
=
10
vion.consumer.
mall
RetryPersonLabel.autoStartup
=
false
vion.consumer.
store
RetryPersonLabel.autoStartup
=
false
vion.consumer.
mall
RetryPersonLabel.concurrency
=
1
vion.consumer.
store
RetryPersonLabel.concurrency
=
1
# d_gate_minute_count_data
# d_gate_minute_count_data
vion.consumer.
mall
GateMinuteCount.autoStartup
=
true
vion.consumer.
store
GateMinuteCount.autoStartup
=
true
vion.consumer.
mall
GateMinuteCount.concurrency
=
1
vion.consumer.
store
GateMinuteCount.concurrency
=
1
vion.consumer.
mall
GateMinuteCount.batchSize
=
20
vion.consumer.
store
GateMinuteCount.batchSize
=
20
vion.consumer.
mall
GateMinuteCount.batchThreadNum
=
5
vion.consumer.
store
GateMinuteCount.batchThreadNum
=
5
# d_zone_minute_count_data
# d_zone_minute_count_data
vion.consumer.
mall
ZoneMinuteCount.autoStartup
=
true
vion.consumer.
store
ZoneMinuteCount.autoStartup
=
true
vion.consumer.
mall
ZoneMinuteCount.concurrency
=
1
vion.consumer.
store
ZoneMinuteCount.concurrency
=
1
vion.consumer.
mall
ZoneMinuteCount.batchSize
=
20
vion.consumer.
store
ZoneMinuteCount.batchSize
=
20
vion.consumer.
mall
ZoneMinuteCount.batchThreadNum
=
5
vion.consumer.
store
ZoneMinuteCount.batchThreadNum
=
5
#
mall
dataStiatistics
#
store
dataStiatistics
vion.consumer.
mall
DataStatistics.autoStartup
=
true
vion.consumer.
store
DataStatistics.autoStartup
=
true
vion.consumer.
mall
DataStatistics.concurrency
=
1
vion.consumer.
store
DataStatistics.concurrency
=
1
vion.consumer.
mall
DataStatistics.reidUrl
=
http://10.0.14.11:23456
vion.consumer.
store
DataStatistics.reidUrl
=
http://10.0.14.11:23456
vion.consumer.
mall
DataStatistics.zoneNum
=
false
vion.consumer.
store
DataStatistics.zoneNum
=
false
vion.consumer.
mall
DataStatistics.payEvent
=
false
vion.consumer.
store
DataStatistics.payEvent
=
false
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment