摘要: 注意:如果是文本类型的,指针可能需要多加 + 的偏移才能正常显示到文字 阅读全文
posted @ 2021-02-27 13:03 hujunmin 阅读(190) 评论(0) 推荐(0)
摘要: 搜搜中文的时候,扫描不到可以选择 Unicode 试试,如果还搜索不到,需要转码在搜索 注意:部分版本CE可能需要选中“代码页” 才能搜索中文 阅读全文
posted @ 2021-02-27 13:00 hujunmin 阅读(168) 评论(0) 推荐(0)
摘要: 扫描不到的时候,可以将快速扫描取消,一个字节一个字节的扫描 扫描数据量大时,可以选择扫描区间,分批次扫描。减少卡死的可能 阅读全文
posted @ 2021-02-27 12:57 hujunmin 阅读(238) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-02-27 12:54 hujunmin 阅读(103) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-02-27 12:51 hujunmin 阅读(92) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-02-27 12:48 hujunmin 阅读(129) 评论(0) 推荐(0)
摘要: 1.C# 传奇源码相关网页地址 资源博客 https://blog.csdn.net/y13156556538/article/details/56279662 国外官网: http://www.acem2.com/chronicles.html 源码版本发布: https://github.com 阅读全文
posted @ 2021-02-05 17:39 hujunmin 阅读(1386) 评论(0) 推荐(0)
摘要: 背景: spring cloud + spring OAuth2 + swagger 的时候,接口需要权限才能访问 目标: 登录一次后,swagger 测试时自带身份信息 参考: https://cloud.tencent.com/developer/article/1493502 代码如下: pa 阅读全文
posted @ 2020-12-22 17:59 hujunmin 阅读(5569) 评论(2) 推荐(0)
摘要: 一、Spring security OAuth2 https://projects.spring.io/spring-security-oauth/docs/oauth2.html https://docs.spring.io/spring-security-oauth2-boot/docs/2.1 阅读全文
posted @ 2020-12-22 10:50 hujunmin 阅读(94) 评论(0) 推荐(0)
摘要: 查看镜像 docker images 进入容器 docker exec -it <容器Id|容器名> /bin/bash [root]# docker exec -it b6f62403008c /bin/bash 创建容器 docker run --name my_nginx -d -p 80:8 阅读全文
posted @ 2020-12-14 10:59 hujunmin 阅读(79) 评论(0) 推荐(0)