摘要: //判断处罚类型和金额 predicates.add( builder.or( builder.and( builder.equal(root.get("targetType"), TargetType.TARGET_TYPE_1.getType()), builder.greaterThanOrE 阅读全文
posted @ 2021-10-26 14:43 TIFOSI_Z 阅读(232) 评论(0) 推荐(0) 编辑
摘要: https://ttys3.dev/post/openssh-8-8-p1-no-matching-host-key-type-found-their-offer-ssh-rsa/ Unable to negotiate with 47.98.49.44 port 22: no matching h 阅读全文
posted @ 2021-10-22 14:48 TIFOSI_Z 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 运行sql文件导入数据的时候 文本字段数据过长; 查看通信缓冲区的最大长度: show global variables like 'max_allowed_packet';//变更最大长度16为16M 这个值要比导入的sql文件占用空间大才可以set global max_allowed_pack 阅读全文
posted @ 2021-09-07 10:49 TIFOSI_Z 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 查询语句 SELECT#c.TABLE_SCHEMA AS'数据库名',c.TABLE_NAME AS'表名', t.TABLE_COMMENT '中文表名', c.COLUMN_NAME AS'列名', c.COLUMN_TYPE AS'类型', c.COLUMN_DEFAULT AS'默认值', 阅读全文
posted @ 2021-08-11 09:45 TIFOSI_Z 阅读(85) 评论(0) 推荐(0) 编辑
摘要: abbreviation 填写 * * * * $VAR1$ $params$* @return $returns$ * @author y * @description: d * @date $date$ $time$ */ groovyScript(" def result=''; def pa 阅读全文
posted @ 2021-08-06 11:05 TIFOSI_Z 阅读(42) 评论(0) 推荐(0) 编辑
摘要: https://github.com/fjqingyou/PotPlayer_Subtitle_Translate_Baidu 在线视频实时翻译 阅读全文
posted @ 2021-06-05 11:44 TIFOSI_Z 阅读(71) 评论(0) 推荐(0) 编辑
摘要: npm install --save xxx@xxx -S 等价 --save 将包依赖生产 -D 等价 --save-dev 将包依赖开发 删除模块 npm uninstall xxxx 删除模块,但不删除在package.json中的信息 npm uninstall xxxx --save 删除 阅读全文
posted @ 2021-05-16 16:28 TIFOSI_Z 阅读(37) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
posted @ 2021-05-08 13:02 TIFOSI_Z 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 拷贝: git cllone 创建分支 git branch <name> 创建并进入分支 git check out -b <name> 切换分支 git checkout <name> 查看状态 git status 添加所有文件 git add . 提交 git commit -m '描述' 阅读全文
posted @ 2021-04-25 13:21 TIFOSI_Z 阅读(94) 评论(0) 推荐(0) 编辑
摘要: Client does not support authentication protocol requested by server 也适用于 Operation ALTER USER failed for '用户名'@'主机' ... ; (当然前提是密码方面的问题) 本机是mysql8 原因: 阅读全文
posted @ 2021-04-02 13:44 TIFOSI_Z 阅读(45) 评论(0) 推荐(0) 编辑