摘要:
//判断处罚类型和金额 predicates.add( builder.or( builder.and( builder.equal(root.get("targetType"), TargetType.TARGET_TYPE_1.getType()), builder.greaterThanOrE 阅读全文
摘要:
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 阅读全文
摘要:
运行sql文件导入数据的时候 文本字段数据过长; 查看通信缓冲区的最大长度: show global variables like 'max_allowed_packet';//变更最大长度16为16M 这个值要比导入的sql文件占用空间大才可以set global max_allowed_pack 阅读全文
摘要:
查询语句 SELECT#c.TABLE_SCHEMA AS'数据库名',c.TABLE_NAME AS'表名', t.TABLE_COMMENT '中文表名', c.COLUMN_NAME AS'列名', c.COLUMN_TYPE AS'类型', c.COLUMN_DEFAULT AS'默认值', 阅读全文
摘要:
abbreviation 填写 * * * * $VAR1$ $params$* @return $returns$ * @author y * @description: d * @date $date$ $time$ */ groovyScript(" def result=''; def pa 阅读全文
摘要:
https://github.com/fjqingyou/PotPlayer_Subtitle_Translate_Baidu 在线视频实时翻译 阅读全文
摘要:
npm install --save xxx@xxx -S 等价 --save 将包依赖生产 -D 等价 --save-dev 将包依赖开发 删除模块 npm uninstall xxxx 删除模块,但不删除在package.json中的信息 npm uninstall xxxx --save 删除 阅读全文
摘要:
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
摘要:
拷贝: git cllone 创建分支 git branch <name> 创建并进入分支 git check out -b <name> 切换分支 git checkout <name> 查看状态 git status 添加所有文件 git add . 提交 git commit -m '描述' 阅读全文
摘要:
Client does not support authentication protocol requested by server 也适用于 Operation ALTER USER failed for '用户名'@'主机' ... ; (当然前提是密码方面的问题) 本机是mysql8 原因: 阅读全文