介绍
建立虚拟网卡,通过网络映射管理请求
mvn clean package -Dmaven.doc.skip=true
curl -I -m 2 -o /dev/null -s -w 8080_%{http_code}"\n" localhost:8080/status.jsp
Redisson
实现的是可重入锁,同一线程获取同一个锁返回一直是true
,每次都会更新锁的有效期
ReentrantLock
是可重入锁,那它的特点就是:同一个线程可以重复拿到同一个资源的锁。重入锁非常有利于资源的高效利用。
若是本地单元测试,则需要考虑启多个线程进行测试锁,否则可能会因可重入锁而失败
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