2021年 09月 10日 - Wireshark抓包

    介绍

    建立虚拟网卡,通过网络映射管理请求

    下载地址

    wireshark

    2021年 09月 03日 - maven跳过javadoc

    插件

    mvn clean package -Dmaven.doc.skip=true
    

    2021年 03月 10日 - curl查看状态码

    curl查看状态码

    curl -I -m 2 -o /dev/null -s -w 8080_%{http_code}"\n" localhost:8080/status.jsp
    

    2020年 12月 25日 - Redisson的可重入锁使用

    Redisson的可重入锁使用

    Redisson实现的是可重入锁,同一线程获取同一个锁返回一直是true,每次都会更新锁的有效期

    ReentrantLock是可重入锁,那它的特点就是:同一个线程可以重复拿到同一个资源的锁。重入锁非常有利于资源的高效利用。

    若是本地单元测试,则需要考虑启多个线程进行测试锁,否则可能会因可重入锁而失败

    2020年 12月 21日 - git删除所有历史提交记录

    git删除所有历史提交记录

    原文 git删除所有历史提交记录

    1.Checkout
       git checkout --orphan latest_branch
    
    2. Add all the files
       git add -A
    
    3. Commit the changes
       git commit -am "commit message"
    
    4. Delete the branch
       git branch -D master
    
    5.Rename the current branch to master
       git branch -m master
    
    6.Finally, force update your repository
       git push -f origin master