上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: #!/bin/bash #chkconfig:2345 61 61 ###########################使用办法################################# ####1、将此文件放在/etc/rc.d/init.d/下,赋予执行权限############## 阅读全文
posted @ 2021-01-14 14:58 蓝色土耳其 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 上篇介绍到任务调度框架Quartz,此次介绍下Spring自带定时器@Scheduled 1、使用方法,在需要执行的方法上添加@Scheduled注解 @EnableScheduling @Component public class QuartzService { @Scheduled(cron 阅读全文
posted @ 2020-11-26 21:38 蓝色土耳其 阅读(2555) 评论(0) 推荐(1) 编辑
摘要: Quartz API中的关键接口 Job : Quartz提供的需实现的需调度器执行的任务组件接口,只有唯一接口: void execute(JobExecutionContext var1) throws JobExecutionException; job.class :实现了execute接口 阅读全文
posted @ 2020-11-25 23:00 蓝色土耳其 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 以Springboot为例介绍通过Quartz作业调度框架实现定时任务。 1、引用Quartz依赖 <!--引入Quartz--> <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> 阅读全文
posted @ 2020-11-25 22:53 蓝色土耳其 阅读(1053) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2020-11-16 18:54 蓝色土耳其 阅读(1528) 评论(0) 推荐(0) 编辑
摘要: 1、条件匹配:MatchOperation MatchOperation matchOperation = Aggregation.match(new Criteria().where("area_code").is(areaCode)); 2、分组计数:GroupOperation + count 阅读全文
posted @ 2020-11-05 20:15 蓝色土耳其 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 1、查看主题命令 ./kafka-topics.sh --list --zookeeper bigdata1:2181,bigdata2:2181,bigdata3:2181 2、模拟生产者生产消息 ./kafka-console-producer.sh --broker-list bigdata1 阅读全文
posted @ 2020-10-12 14:41 蓝色土耳其 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 背景:系统中需要通过起始时间、结束时间来查询数据1、原写法 if(StringUtil.isNotEmpty(startTime) && StringUtil.isNotEmpty(endTime)){ criteria.and("create_time").gte(startTime); crit 阅读全文
posted @ 2020-10-12 14:36 蓝色土耳其 阅读(1716) 评论(0) 推荐(0) 编辑
摘要: 1、修改nginx.conf后,重启时报错 2、错误原因 如果location或if中用到了正则,则不能再转发除ip:port外的路径请求 阅读全文
posted @ 2020-09-29 17:06 蓝色土耳其 阅读(11121) 评论(0) 推荐(0) 编辑
摘要: 一、正则匹配 ~ 为区分大小写匹配 ~* 为不区分大小写匹配 !和!*分别为区分大小写不匹配及不区分大小写不匹配 二、文件及目录匹配 -f和!-f用来判断是否存在文件 -d和!-d用来判断是否存在目录 -e和!-e用来判断是否存在文件或目录 -x和!-x用来判断文件是否可执行 三.rewrite指令 阅读全文
posted @ 2020-09-29 13:59 蓝色土耳其 阅读(1551) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页