摘要:
在运行mvn install或mvn package时跳过Test 方法一:修改pom.xml文件 <project> [...] <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>m 阅读全文
摘要:
转自:https://www.cnblogs.com/xiaoxi/p/7651360.html 一、ReentrantLock 1、ReentrantLock简介 ReentrantLock是一个可重入的互斥锁,又被称为“独占锁”。ReentrantLock 类实现了 Lock ,它拥有与 syn 阅读全文
摘要:
消息队列常见的几种使用场景介绍! 转自: https://blog.csdn.net/fygu18/article/details/80863596 一、简介 消息队列中间件是分布式系统中重要的组件,主要解决应用耦合,异步消息,流量削锋等问题。实现高性能、高可用、可伸缩和最终一致性架构。使用较多的消 阅读全文
摘要:
安装 切换到: cd /Users/panyang/redis-4.0.9/ 进入到解压后的文件夹下面,路径改成你自己的文件夹存放的路径 编译测试: sudo make test 编译安装: sudo make install redis-server /path/to/redis.conf red 阅读全文
摘要:
转自:https://www.cnblogs.com/noteless/p/10592362.html 常用的反编译工具进行简单介绍 JD-GUI、procyon-decompiler、luyten、crf JD-GUI JDK7以及之前可以使用 JD-GUI,如果版本>=1.8 各种问题 http 阅读全文
摘要:
方法一: 1、对pom.xml的修改,加入插件 <!-- 打包可运行fatjar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <vers 阅读全文
摘要:
1、下载maven安装包 apache-maven-3.5.2-bin.tar.gz 2、配置环境变量(mac) vim ~/.bash_profile # Add maven home export M2_HOME=/Users/chong/Documents/soft/maven/apache- 阅读全文
摘要:
转自:https://www.ruanyifeng.com/blog/2013/07/rsa_algorithm_part_two.html RSA算法。这是目前地球上最重要的加密算法。 密钥生成的步骤 我们通过一个例子,来理解RSA算法。假设爱丽丝要与鲍勃进行加密通信,她该怎么生成公钥和私钥呢? 阅读全文
摘要:
备份库 mongodump -h 127.0.0.1 -d loginserver -o /root/data/soft/mongodb/backup/ 恢复库 mongorestore -h 127.0.0.1 -d loginserver /root/data/soft/mongodb/back 阅读全文
摘要:
升级了 AdroidStudio到3.6.3,总是报找不到 gradle3.6.3 修改工程的 build.gradle,加入 google() 再同步就可以了 ext { var = '3.6.3' }// Top-level build file where you can add config 阅读全文