摘要:
setNowTimes: function () { var myDate = new Date(); // console.log(myDate) var wk = myDate.getDay(); var yy = String(myDate.getFullYear()); var mm = m 阅读全文
摘要:
#!/bin/bash #chkconfig:2345 61 61 ###########################使用办法################################# ####1、将此文件放在/etc/rc.d/init.d/下,赋予执行权限############## 阅读全文
摘要:
上篇介绍到任务调度框架Quartz,此次介绍下Spring自带定时器@Scheduled 1、使用方法,在需要执行的方法上添加@Scheduled注解 @EnableScheduling @Component public class QuartzService { @Scheduled(cron 阅读全文
摘要:
Quartz API中的关键接口 Job : Quartz提供的需实现的需调度器执行的任务组件接口,只有唯一接口: void execute(JobExecutionContext var1) throws JobExecutionException; job.class :实现了execute接口 阅读全文
摘要:
以Springboot为例介绍通过Quartz作业调度框架实现定时任务。 1、引用Quartz依赖 <!--引入Quartz--> <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> 阅读全文
摘要:
1、SQL1如下 SELECT aa.* FROM apas_smoke aa WHERE STATUS = 0 AND aa.area_id = 'd61523dda339441f80008634c6b91f60' AND aa.type = '3' AND to_days( create_tim 阅读全文
摘要:
1、条件匹配:MatchOperation MatchOperation matchOperation = Aggregation.match(new Criteria().where("area_code").is(areaCode)); 2、分组计数:GroupOperation + count 阅读全文
摘要:
1、查看主题命令 ./kafka-topics.sh --list --zookeeper bigdata1:2181,bigdata2:2181,bigdata3:2181 2、模拟生产者生产消息 ./kafka-console-producer.sh --broker-list bigdata1 阅读全文
摘要:
背景:系统中需要通过起始时间、结束时间来查询数据1、原写法 if(StringUtil.isNotEmpty(startTime) && StringUtil.isNotEmpty(endTime)){ criteria.and("create_time").gte(startTime); crit 阅读全文
摘要:
1、修改nginx.conf后,重启时报错 2、错误原因 如果location或if中用到了正则,则不能再转发除ip:port外的路径请求 阅读全文