注释任务开启日志
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
package com.zbkj.crmeb.task.cloud;
|
||||
|
||||
import com.utils.DateUtil;
|
||||
import com.zbkj.crmeb.system.service.SystemAttachmentService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@@ -23,7 +22,7 @@ public class AsyncCloud {
|
||||
|
||||
@Scheduled(fixedDelay = 1000 * 5L) //5秒钟同步一次数据
|
||||
public void init(){
|
||||
logger.info("---AsyncCloud task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
// logger.info("---AsyncCloud task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
try {
|
||||
systemAttachmentService.async();
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ public class OrderCancelByUser {
|
||||
|
||||
@Scheduled(fixedDelay = 1000 * 60L) //1分钟同步一次数据
|
||||
public void init(){
|
||||
logger.info("---OrderRefundByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
// logger.info("---OrderRefundByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
try {
|
||||
orderTaskService.cancelByUser();
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ public class OrderCompleteByUser {
|
||||
|
||||
@Scheduled(fixedDelay = 1000 * 60L) //1分钟同步一次数据
|
||||
public void init(){
|
||||
logger.info("---OrderCompleteByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
// logger.info("---OrderCompleteByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
try {
|
||||
orderTaskService.complete();
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ public class OrderDeleteByUser {
|
||||
|
||||
@Scheduled(fixedDelay = 1000 * 60L) //1分钟同步一次数据
|
||||
public void init(){
|
||||
logger.info("---OrderDeleteByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
// logger.info("---OrderDeleteByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
try {
|
||||
orderTaskService.deleteByUser();
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
package com.zbkj.crmeb.task.order;
|
||||
|
||||
import com.utils.DateUtil;
|
||||
import com.zbkj.crmeb.store.service.OrderTaskService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@@ -23,7 +22,7 @@ public class OrderRefundByUser {
|
||||
|
||||
@Scheduled(fixedDelay = 1000 * 60L) //1分钟同步一次数据
|
||||
public void init(){
|
||||
logger.info("---OrderRefundByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
// logger.info("---OrderRefundByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
try {
|
||||
orderTaskService.refundApply();
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ public class OrderTakeByUser {
|
||||
|
||||
@Scheduled(fixedDelay = 1000 * 60L) //1分钟同步一次数据
|
||||
public void init(){
|
||||
logger.info("---OrderTakeByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
// logger.info("---OrderTakeByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
try {
|
||||
orderTaskService.takeByUser();
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ public class ProductStock {
|
||||
|
||||
@Scheduled(fixedDelay = 1000 * 60L) //1分钟同步一次数据
|
||||
public void init(){
|
||||
logger.info("---OrderTakeByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
// logger.info("---OrderTakeByUser task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDateTime());
|
||||
try {
|
||||
storeProductService.consumeProductStock();
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
package com.zbkj.crmeb.task.sms;
|
||||
|
||||
import com.utils.DateUtil;
|
||||
import com.zbkj.crmeb.sms.service.SmsService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@@ -28,7 +27,7 @@ public class AsyncSmsSend {
|
||||
|
||||
@Scheduled(fixedDelay = 1000 * 5L) //5秒同步一次数据
|
||||
public void init(){
|
||||
logger.info("---AsyncSmsSend task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDate());
|
||||
// logger.info("---AsyncSmsSend task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDate());
|
||||
try {
|
||||
smsService.consume();
|
||||
|
||||
|
||||
@@ -1,8 +1,5 @@
|
||||
package com.zbkj.crmeb.task.sms;
|
||||
import com.utils.DateUtil;
|
||||
import com.zbkj.crmeb.sms.model.SmsRecord;
|
||||
import com.zbkj.crmeb.sms.service.SmsRecordService;
|
||||
import com.zbkj.crmeb.sms.service.SmsService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@@ -29,7 +26,7 @@ public class AsyncSmsSendResult {
|
||||
|
||||
@Scheduled(fixedDelay = 1000 * 60L) // todo 后面更改为 一分钟同步一次数据
|
||||
public void init(){
|
||||
logger.info("---AsyncSmsResult task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDate());
|
||||
// logger.info("---AsyncSmsResult task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDate());
|
||||
try {
|
||||
smsRecordsService.consumeSmsStatus();
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
package com.zbkj.crmeb.task.wechat;
|
||||
|
||||
import com.utils.DateUtil;
|
||||
import com.zbkj.crmeb.wechat.service.WechatProgramPublicTempService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@@ -27,7 +26,7 @@ public class AsyncWeChatProgramTempList {
|
||||
|
||||
@Scheduled(fixedDelay = 1000L * 60 * 60 * 24) //1天同步一次数据
|
||||
public void init(){
|
||||
logger.info("---AsyncWeChatProgramTempList task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDate());
|
||||
// logger.info("---AsyncWeChatProgramTempList task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDate());
|
||||
try {
|
||||
if(asyncWeChatProgramTempList){
|
||||
wechatProgramPublicTempService.async();
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
package com.zbkj.crmeb.task.wechat;
|
||||
|
||||
import com.utils.DateUtil;
|
||||
import com.zbkj.crmeb.wechat.service.TemplateMessageService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@@ -23,7 +22,7 @@ public class AsyncWeChatProgramTempMessage {
|
||||
|
||||
@Scheduled(fixedDelay = 1000 * 60L) //1分钟同步一次数据
|
||||
public void init(){
|
||||
logger.info("---AsyncWeChatProgramTempMessage task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDate());
|
||||
// logger.info("---AsyncWeChatProgramTempMessage task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDate());
|
||||
try {
|
||||
templateMessageService.consumeProgram();
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
package com.zbkj.crmeb.task.wechat;
|
||||
|
||||
import com.utils.DateUtil;
|
||||
import com.zbkj.crmeb.wechat.service.TemplateMessageService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
@@ -23,7 +22,7 @@ public class AsyncWeChatPublicTempMessage {
|
||||
|
||||
@Scheduled(fixedDelay = 1000 * 60L) //1分钟同步一次数据
|
||||
public void init(){
|
||||
logger.info("---AsyncWeChatPublicTempMessage task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDate());
|
||||
// logger.info("---AsyncWeChatPublicTempMessage task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDate());
|
||||
try {
|
||||
templateMessageService.consumePublic();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user