博客常用目录清单(待完善)

Python类

基础笔记类

  python工作遇到的小技能: https://www.cnblogs.com/kaibindirver/p/16379652.html

  python3工作遇到的小技能: https://www.cnblogs.com/kaibindirver/p/12577361.html

框架类

  Unittest :

      模版 : https://www.cnblogs.com/kaibindirver/p/8138300.html

      unittest框架断言方法:https://www.cnblogs.com/kaibindirver/p/8086043.html

      单文件指定用例执行: https://www.cnblogs.com/kaibindirver/p/8093793.html

      测试套件使用: https://www.cnblogs.com/kaibindirver/p/11068802.html

      报告乱码解决: https://www.cnblogs.com/kaibindirver/p/8463273.html

      skip跳过用例: https://www.cnblogs.com/kaibindirver/p/9406390.html

      其他: https://www.cnblogs.com/kaibindirver/category/1136115.html

  selenium:

      selenium + Selenoid 实现前端展示执行的ui过程 :https://www.cnblogs.com/kaibindirver/p/14988791.html

  Appium:

      adb wifi连接手机 + docker 启动appium环境 +实现连接多台设备:https://www.cnblogs.com/kaibindirver/p/16494904.html

  客户端:

      本地调试存在服务端的selenium脚本方法(弄个python客户端唤起本地浏览器): https://www.cnblogs.com/kaibindirver/p/16690385.html

 Djanngo:

      drf基于APIView开发接口

        Serializer模块

                                  视图类操作数据库整理与总结笔记

           自定义校验 (接收前端数据)

https://www.cnblogs.com/kaibindirver/p/17140706.html      

https://www.cnblogs.com/kaibindirver/p/16770753.html

           序列化校验 (给前端数据做处理) https://www.cnblogs.com/kaibindirver/p/17147733.html

           获取前端参数经过序列化器 额外传入字符的方法  https://www.cnblogs.com/kaibindirver/p/13264461.html   里面有说

           Serializer 序列化 -----视图层传入一个变量到序列化器的方法

            

     

 
 

 

      

Java类

基础笔记类

  java工作遇到的小技能: https://www.cnblogs.com/kaibindirver/p/16419760.html

java开发类

  统一规范接口返回信息:  https://www.cnblogs.com/kaibindirver/p/16358813.html

  hutool 常用工具类: https://www.cnblogs.com/kaibindirver/p/16110551.html

  JWT 身份态实现:  https://www.cnblogs.com/kaibindirver/p/16084477.html

  mp代码生成器: https://www.cnblogs.com/kaibindirver/p/15150557.html

  RestTemplate 发送请求

    springboot -RestTemplate 发送请求:  https://www.cnblogs.com/kaibindirver/p/15398815.html

    RestTemplate 非200请求 响应获取的方法https://www.cnblogs.com/kaibindirver/p/15948384.html

    springboot 获取请求 / 响应 接收和设置请求头 、请求码的方法: https://www.cnblogs.com/kaibindirver/p/15524830.html

    

  数据库相关

    构造器查询:
    https://www.cnblogs.com/kaibindirver/p/15530750.html
    xml和注解查询
    https://www.cnblogs.com/kaibindirver/p/15047034.html
    https://www.cnblogs.com/kaibindirver/p/15240918.html
    https://www.cnblogs.com/kaibindirver/p/15258988.html
    mp多数据源
    https://www.cnblogs.com/kaibindirver/p/15121436.html
    乐观锁
    https://www.cnblogs.com/kaibindirver/p/15898452.html

 

  Springboot:

    sprintboot-yaml文件配置变量 从配置文件取值: https://www.cnblogs.com/kaibindirver/p/14960349.html

 

Vue类

vue开发类

  操作localStorge:  https://www.cnblogs.com/kaibindirver/p/13674893.html

  动态路由实现: https://www.cnblogs.com/kaibindirver/p/16192723.html

  数据监听: https://www.cnblogs.com/kaibindirver/p/16204279.html

  eChart图表相关

      echarts图表: https://www.cnblogs.com/kaibindirver/p/13544427.html

      vue组件更新--(做eChart图表用到): https://www.cnblogs.com/kaibindirver/p/17051061.html

                  自适应窗口大小  vue-echar 条形图(含底部滑动、图表自适应)      

  excel相关

      表格导出excel  vue 本地导出实现(亲测ok)  、  导出xlsx (最好看这个前面那个编辑后读取会有编码问题)

      导入excel获取里面的数据: vue上传excel获取表格数据(亲测ok)

      另外一种 json转流文件、xlsx文件转流文件、调用上传文件接口的案例   https://www.cnblogs.com/kaibindirver/p/17463066.html

      vue 调用下载文件接口https://www.cnblogs.com/kaibindirver/p/15797386.html

  router

      路由跳转获取uri上参数

  组件调用

      组件传值      

                    Vue 父组件调用子组件的方法 和 拿值 赋值  

      重置组件的方法            

 

      

  

  

                 

      

 

 

vue环境搭建类

  搭建环境启动项目系列一:

      1-1、项目启动方式: https://www.cnblogs.com/kaibindirver/p/16783168.html

      1-2、centos搭建vue3环境:  https://www.cnblogs.com/kaibindirver/p/16784302.html

      1-3、制作镜像 和 dockerfile编写  https://www.cnblogs.com/kaibindirver/p/16784302.html

      1-4、上传镜像到dockerhub远程仓库  https://www.cnblogs.com/kaibindirver/p/16784415.html

      1-5、dockerfile启动和编写规则  https://www.cnblogs.com/kaibindirver/p/15900306.html

  搭建环境启动项目系列二: 

      1-1、nginx方式访问vue项目: https://www.cnblogs.com/kaibindirver/p/14676274.html 

 

      

 

 

工具类

性能测试类

 

中间件类

数据库mysql:

  命令行操作sql 记录 (含设置连接数): https://www.cnblogs.com/kaibindirver/p/16258194.html

  慢sql 查找的方法: https://www.cnblogs.com/kaibindirver/p/14149762.html

 

 

 

性能测试相关

  仅自己可见arthas:(查找接口耗时问题)

       第一波: https://www.cnblogs.com/kaibindirver/p/15001676.html

       第二波: https://www.cnblogs.com/kaibindirver/p/15354410.html

   jstack: (查找cpu偏高问题)

       性能查找cpu偏高的原因: https://www.cnblogs.com/kaibindirver/p/14679243.html

   jprofile: (查内存溢出问题)

       jvm内存(堆内存)了解: https://www.cnblogs.com/kaibindirver/p/15977602.html

   jvisualvm:(线程死锁问题定位)

       使用jconsole、jvisualvm查看线程运行状态、内存实时监控:   https://www.cnblogs.com/kaibindirver/p/16672358.html

    

  

 

 

 

 

服务器相关

    本地上传/下载/登陆服务器: https://www.cnblogs.com/kaibindirver/p/16256058.html

    写项目打包时用到的小技巧

      pip指定文件执行(文件里写了多个依赖库): https://www.cnblogs.com/kaibindirver/p/11209370.html

      命令行执行多条命令(执行一个文件里面多条命令): https://www.cnblogs.com/kaibindirver/p/16685019.html

 

 

 

写了一个贴吧用的的笔记归纳

vue简单的富文本实现(亲测可以) 

 

项目规范

utils 放公共的东西

 

了解下 阿里云的 ingress

 

实现下python socke

https://mp.weixin.qq.com/s/836SCRUphJZ_8EDS8OFuag

 

Django 操作 mongo

https://blog.csdn.net/qq_45059512/article/details/105660280

posted @ 2022-03-29 14:15  凯宾斯基  阅读(61)  评论(0编辑  收藏  举报