一、问题 最近测试环境的 consul 发生了重启 但是重启之后,发现服务注册不上去了,查看consul 的日志,发现了下面的信息。 2021/04/28 06:40:55 [WARN] agent: Syncing service "uat_10.60.6.30:davietest:8092" f ...
分类:
其他好文 时间:
2021-04-29 12:11:26
阅读次数:
0
数据库的创建 CREATE DATABASE 数据库名称 表的创建 CREATE TABLE 表名称 ( -- not null 设置非空 列名称1 数据类型 not null, 列名称2 数据类型, ....... --设置主键 constraint PK_Reader_ID primary ke ...
分类:
数据库 时间:
2021-04-29 12:01:35
阅读次数:
0
~交换两个变量的方法 使用C#中的第三个变量交换两个数字 int number=10,number=20,temp=0; temp=number; number1=number2; number2=number1; 不使用第三个变量交换数字的方法 通过 *和/ int number1=10,numb ...
#### jQuery的四种选择器 jQ选择器与css选择器本质上相差不大,但是在使用容易混淆格式或属性 ##### 1.基础选择器 $('#id名') $('.类名') $('.类名1 .类名2') $('标签名.类名') ##### 2.层级选择器 ###### 1.子代:> children ...
分类:
其他好文 时间:
2021-04-29 11:44:29
阅读次数:
0
在执行一段查询SQL的时候报错,系统提示此错误: 经几遍修改SQL还是报该错,核对SQL语句无误,经查看数据集,匹配id存在非数值记录 1.在查询的where里面加入条件语句,查看异常数据: select * from 表名 where nvl2(translate(字段名,'/1234567890 ...
分类:
数据库 时间:
2021-04-29 11:39:10
阅读次数:
0
var sql = @"update [TABLE] WITH (ROWLOCK) SET 匹配方式 = '{0}' where ID in({1})"; //lissqls 是你要分组的泛型集合 var GroupList = lissqls.GroupBy(x => x.MatchType).S ...
JS里面的事件循环,跟JS的单线程的处理机制息息相关,它把js代码处理成任务里的frame,按照如图的分类,划分进去分轮次的宏任务和微任务队列里面。 宏任务仔细划分的话,包括的就是主调用栈和消息队列,代码优先推入调用栈,遇到定时器,promise.then()等之类的函数会推入消息队列和微任务队列 ...
分类:
Web程序 时间:
2021-04-28 12:14:53
阅读次数:
0
pymysql连接数据库报错: 解决方法: 将db = pymysql.connect(“localhost”,“root”,“root”,“testdb” )修改为 db = pymysql.connect(host=“localhost”, user=“root”, password=“root ...
分类:
数据库 时间:
2021-04-28 12:07:51
阅读次数:
0
git log 显示从最近到最远的所有提交日志 git reflog 显示每次提交的 commit 的 comit id git reset --hard HEAD^ // 回退到 最后一次提交的版本 git reset --hard 版本id // 回退到 当前id 提交的版本 -> id 可以通 ...
分类:
其他好文 时间:
2021-04-28 12:05:46
阅读次数:
0
<insert id="insertBatchList"> INSERT INTO tag ( `tag_name`, `tag_weight`, ) VALUES <foreach collection ="list" item="tag" separator =","> (#{tag.tagNa ...
分类:
其他好文 时间:
2021-04-28 12:04:54
阅读次数:
0