上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: import org.slf4j.Logger;import org.slf4j.LoggerFactory;import javax.net.ssl.HostnameVerifier;import javax.net.ssl.HttpsURLConnection;import javax.net. 阅读全文
posted @ 2020-06-12 16:25 逐梦寻欢 阅读(2752) 评论(0) 推荐(0) 编辑
摘要: 1.调用demo ValidUtil.valid("【设备编码】50内长度数字", body.getDeviceNum(), "{'required':true,'regex':'" + RegexConstants.DEVICE_NUM_PATTERN + "'}"); ValidUtil.val 阅读全文
posted @ 2020-06-12 16:22 逐梦寻欢 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 1.引入pom依赖 <dependency> <groupId>org.apache.curator</groupId> <artifactId>curator-client</artifactId> <version>2.9.1</version> </dependency> <dependenc 阅读全文
posted @ 2020-06-12 16:10 逐梦寻欢 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 1 #输出文件末尾行(默认10行),当文件有追加时,会输出后续添加的行,不会中断输出,除非ctrl+c中断 2 #-f 即 --follow=file.log 3 tail -f file.log 4 5 #输出文件末尾100行,实时更新 6 tail -100f file.log 7 8 #输出文 阅读全文
posted @ 2020-06-05 17:03 逐梦寻欢 阅读(3708) 评论(0) 推荐(0) 编辑
摘要: # 查看Master状态 kubectl get componentstatuses # 查看所有命名空间 kubectl get namespace # 列出所有的pods kubectl get pods # 显示更多的pods列表信息(例如 pod的ip和所处的node) kubectl ge 阅读全文
posted @ 2020-05-09 16:39 逐梦寻欢 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 本地服务器 跳转服务器 pod 之间数据导入与导出 1.pod中数据导出 可用lrzsz,导出到桌面中。 在pod中直接操作 从服务器中导入文件到pod 中: kubectl cp /root/integration/test/hpa_automation/tosca/csar/ns_vgw.csa 阅读全文
posted @ 2020-05-09 16:37 逐梦寻欢 阅读(3582) 评论(0) 推荐(0) 编辑
摘要: 打包以及修改jar包cd genesys_data_etlmvn clean package -Poffline -Dmaven.test.skip=true日志如下:[INFO] maven-jar-plugin:2.6:jar (default-jar) @ genesys_data_etl [ 阅读全文
posted @ 2020-05-09 16:32 逐梦寻欢 阅读(1795) 评论(0) 推荐(0) 编辑
摘要: 【转】https://baijiahao.baidu.com/s?id=1595349117525189591&wfr=spider&for=pc 本文中使用的例子均在下面的数据库表tt2下执行: 一、concat()函数 1、功能:将多个字符串连接成一个字符串。 2、语法:concat(str1, 阅读全文
posted @ 2020-04-03 09:52 逐梦寻欢 阅读(517) 评论(0) 推荐(1) 编辑
摘要: JavaCV中FrameGrabber类可以连接直播流地址, 进行解码, 获取Frame帧信息, 常用方式如下 实际上内部调用的是ffmpeg的avformat_open_input()方法去解析网络流,而ffmpeg的avformat_open_input()默认是阻塞的。 当遇到解析错误的网络流 阅读全文
posted @ 2019-12-24 10:02 逐梦寻欢 阅读(2287) 评论(0) 推荐(0) 编辑
摘要: 官方文档:https://www.ffmpeg.org/doxygen/4.1/group__lavc__decoding.html ffmpeg 源代码简单分析: av_read_frame():https://blog.csdn.net/leixiaohua1020/article/detail 阅读全文
posted @ 2019-12-24 09:55 逐梦寻欢 阅读(291) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页