1 Canal环境准备 1.1 docker安装数据库 配置文件 [root@other example]# cat /mydata/mysql/master/conf/my.cnf [client] default-character-set=utf8 [mysql] default-charac ...
分类:
其他好文 时间:
2020-09-17 13:47:43
阅读次数:
26
@FeignClient("user-service") public interface UserFeignClient { @GetMapping(value="/user/{id}",headers={"Authorization=qwer"}) User queryUserById(@Pat ...
分类:
Web程序 时间:
2020-09-17 12:57:19
阅读次数:
78
测试窗体为: 直接上代码: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using ...
分类:
数据库 时间:
2020-09-17 12:31:54
阅读次数:
43
直接上代码 package com.iflytek.jtcn.service.impl; import org.elasticsearch.client.Client; import java.io.BufferedReader; import java.io.FileReader; import ...
分类:
编程语言 时间:
2020-09-15 21:22:25
阅读次数:
38
环境准备(windows 7) jdk1.8.0推荐(64位) android-sdk_r24.3.4-windows appium:1.7以上 Node.js:node-v10.0-x64 --appium依赖环境 Appium-Python-Client==0.26 -- pip 安装 pyth ...
分类:
移动开发 时间:
2020-09-10 22:43:11
阅读次数:
59
网络编程的基础是基于socket编程。socket(TCP)编程基于固定编程模板 server端: socket(声明socket类型) bind(命令socket,绑定地址和端口) listen(创建监听队列) accept(从监听队列中返回estblished的链接,否则阻塞) client端: ...
分类:
其他好文 时间:
2020-09-09 18:49:38
阅读次数:
35
14.2.5 Connection Phase Packets Protocol::Handshake Initial Handshake Packet When the client connects to the server the server sends a handshake packe ...
分类:
数据库 时间:
2020-09-08 21:06:16
阅读次数:
67
将模板添加给主机后需要如下配置:1,数据库授权获取数据的用户grantselecton.tozabbixmonitor@"localhost"identifiedby"zabbixmonitor";flushprivileges;2,配置文件vim/etc/zabbix/.my.cnf[client]hostname=localhostuser=zabbix
分类:
数据库 时间:
2020-09-08 20:59:23
阅读次数:
63
curl 的用法指南 作者: 阮一峰 简介 curl 是常用的命令行工具,用来请求 Web 服务器。它的名字就是客户端(client)的 URL 工具的意思。 它的功能非常强大,命令行参数多达几十种。如果熟练的话,完全可以取代 Postman 这一类的图形界面工具。 本文介绍它的主要命令行参数,作为 ...
分类:
Web程序 时间:
2020-09-08 20:42:30
阅读次数:
69
SpringBoot中使用RSocket点击左上角,关注:“锅外的大佬”专注分享国外最新技术内容帮助每位开发者更优秀地成长1.概述RSocket应用层协议支持ReactiveStreams语义,例如:用RSocket作为HTTP的一种替代方案。在本教程中,我们将看到RSocket用在springboot中,特别是springboot如何帮助抽象出更低级别的RSocketAPI。2.依赖让我们从添加
分类:
编程语言 时间:
2020-09-07 19:17:21
阅读次数:
56