上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 30 下一页
摘要: 基于echarts的3D地图进行,直接将这代码粘贴到echarts的demo中即可呈现效果 var mygeo = { // 标准的geojson格式 "type": "FeatureCollection", "features": [ { "type":"Feature", "properties 阅读全文
posted @ 2020-10-28 11:20 理舞 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 参考链接:https://www.jianshu.com/p/852d7ad081b3 GeoJSON is a format for encoding a variety of geographic data structures. 格式 { "type": "Feature", "geometr 阅读全文
posted @ 2020-10-28 09:31 理舞 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 背景:程序模块部署,每个模块都有自己的日志存放到本地,当需要进行排查问题的时候,可能需要到各个服务器上去下载日志,然后进行排查,费时。 方案:使用ELK方案,①采用flume采集日志,然后将日志存入消息队列或直接在程序中使用logback连接kafka;②使用logstash从kafka中读取数据, 阅读全文
posted @ 2020-10-28 09:14 理舞 阅读(1228) 评论(0) 推荐(0) 编辑
摘要: 参考博客:https://www.cnblogs.com/dreammyle/p/4843365.html 代码中需要的依赖: <!-- gif --> <dependency> <groupId>com.madgag</groupId> <artifactId>animated-gif-lib</ 阅读全文
posted @ 2020-07-31 10:38 理舞 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 两种方式以及效果: 方式一,使用PIL.Image.blend方式: from PIL import Image, ImageDraw im = Image.open('d:/tmp/58.249.0.220_01_20200604141800866_TIMING.jpg', 'r') im2 = 阅读全文
posted @ 2020-06-15 15:18 理舞 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-26 17:42 理舞 阅读(471) 评论(0) 推荐(0) 编辑
摘要: nginx.conf worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keep 阅读全文
posted @ 2020-05-22 15:46 理舞 阅读(1128) 评论(0) 推荐(0) 编辑
摘要: 引入依赖 <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka_2.11</artifactId> </dependency> 消费者示例ConsumerMain.java import java.util.ArrayL 阅读全文
posted @ 2020-04-21 10:15 理舞 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 后端代码SseController.java package com.theorydance.mywebsocket.server; import java.util.HashMap; import java.util.Map; import java.util.UUID; import org.s 阅读全文
posted @ 2020-04-12 18:32 理舞 阅读(1299) 评论(0) 推荐(0) 编辑
摘要: 使用的是springboot2.1.4版本 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.4.RELEASE< 阅读全文
posted @ 2020-04-12 17:35 理舞 阅读(372) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 30 下一页