2021年11月17日

[spring] 获取MapperProxy中被代理的原始类型

摘要: Type[] genericInterfaces = AopUtils.getTargetClass(target).getGenericInterfaces(); 如下图所示 https://img2020.cnblogs.com/blog/1515892/202111/1515892-20211 阅读全文

posted @ 2021-11-17 13:43 zad27 阅读(278) 评论(0) 推荐(1) 编辑

2020年11月22日

[nginx] session保持

摘要: 详解Nginx反向代理实现会话(session)保持的两种方式 Linux nginx 会话保持(session) nginx+Tomcat反向代理实现session会话保持 Nginx会话保持 nginx load balance nginx admin guide proxy_cookie_pa 阅读全文

posted @ 2020-11-22 10:05 zad27 阅读(413) 评论(0) 推荐(0) 编辑

2020年11月21日

git优秀项目

摘要: [Modern Java - A Guide to Java 8] [APIJSON] [网关soul] [springboot] [TheAlgorithms](https://github.com/TheAlgorithms/Java?utm_source=gold_browser_extens 阅读全文

posted @ 2020-11-21 20:42 zad27 阅读(166) 评论(0) 推荐(0) 编辑

2020年11月14日

[记录]Shell中的括号、双括号、方括号和双方括号

摘要: Shell中的括号、双括号、方括号和双方括号 参数说明 cd [-L|[-P[-e]]] [dir] 表示 cd 后可跟 -L 或 -P 或-Pe 或者 dir 计算 $((expression)) / → 仅得整数 % → 取余 ** → 指数 大括号用法 [me@linuxbox ~]$ ech 阅读全文

posted @ 2020-11-14 18:48 zad27 阅读(392) 评论(0) 推荐(0) 编辑

2020年11月10日

[记录] git commit standard

摘要: https://www.conventionalcommits.org/en/v1.0.0/#summary 阅读全文

posted @ 2020-11-10 16:45 zad27 阅读(54) 评论(0) 推荐(0) 编辑

2020年11月9日

mysql存储过程赋值

摘要: -- 方式 1 DECLARE cnt INT DEFAULT 0; select count(*) into cnt from test_tbl; select cnt; -- 方式 2 set @cnt = (select count(*) from test_tbl); select @cnt 阅读全文

posted @ 2020-11-09 13:12 zad27 阅读(722) 评论(0) 推荐(0) 编辑

2020年9月29日

[记录] git标签推送

摘要: [源] https://stackoverflow.com/questions/18216991/create-a-tag-in-a-github-repository 添加tag git tag 推送所有tag到远程 git push origin --tags 推送指定tag到远程 git pu 阅读全文

posted @ 2020-09-29 11:42 zad27 阅读(287) 评论(0) 推荐(0) 编辑

[记录] Git服务器宕机如何使用本地克隆仓库快速恢复Git服务器

摘要: [Git服务器宕机如何使用本地克隆仓库快速恢复Git服务器] https://blog.51cto.com/luweiv998/2090269 [scp复制文件报错--It is also possible that a host key has just been changed.] https: 阅读全文

posted @ 2020-09-29 11:28 zad27 阅读(245) 评论(0) 推荐(0) 编辑

2020年9月15日

python 升级pip,升级package

摘要: python -m pip install --upgrade pip -i https://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com 解析: 1、以管理员身份升级pip :python -m pip install --u 阅读全文

posted @ 2020-09-15 14:26 zad27 阅读(724) 评论(0) 推荐(0) 编辑

2020年9月5日

汉语拼音转换

摘要: 汉字unicode范围: unicode 拼音数据来源: pinyin4j 简体字繁体字对应数据来源: opencc 粤语拼音数据来源: yueyu 复姓数据来源: 百度百科 拼音sql及复姓sql : sql 姓名转拼音项目: https://github.com/ProgramRun/pinyi 阅读全文

posted @ 2020-09-05 11:37 zad27 阅读(158) 评论(0) 推荐(0) 编辑

导航