摘要:
yum install asciidoc #下载 wget https://github.com/tinyproxy/tinyproxy/releases/download/1.8.4/tinyproxy-1.8.4.tar.gz -O tinyproxy-1.8.4.tar.gz #解压 tar 阅读全文
摘要:
下载代理模块代码 git clone https://gitee.com/web_design_of_web_frontend/ngx_http_proxy_connect_module.git 使用patch,注意拉取后的路径 patch -p1 < /home/zoms/ngx_http_pro 阅读全文
摘要:
public final class ProxyProperties { private static boolean enable; private static String host; private static int port; private static String protoco 阅读全文
摘要:
netstat -tunlp | grep 8080 阅读全文
摘要:
在使用idea的过程中,遇到其中一个maven模块变成灰色,如下所示:造成这个的原因可能是忽略了maven模块,可以尝试如下解决方法:在idea中maven的setting中找到ignored files,看右边的面板中是否将变灰的maven模块忽略了。 阅读全文
摘要:
启动类捕获异常 try{ ApplicationContext applicationContext = SpringApplication.run(TestApplication.class, args);}catch (Exception e){ System.out.println(e.get 阅读全文
摘要:
select * from table where order by id limit 500000,500; 优化为 select * from table where id >=(select id from table order by id limit 500000,1) order by 阅读全文
摘要:
恢复内容开始 mysql类型以及所占字节如下: CHAR 0-255字节定长字符串 VARCHAR 0-65535字节变长字符串 TINYBLOB 0-255字节不超过255个字符的二进制字符串 TINYTEXT 0-255字节短文本字符串 BLOB 0-65535字节二进制形式的长文本数据 TEX 阅读全文
摘要:
实现类 import java.awt.*; import java.awt.image.BufferedImage; import java.io.IOException; import java.io.OutputStream; import java.util.Random; import j 阅读全文
摘要:
1.安装JDK 最好1.8以上 2.下载安装Jmeter https://jmeter-plugins.org/downloads/all/ 下载:apache-jmeter-4.0.tgz,上传到服务器并解压 tar zxvf apache-jmeter-4.0.tgz 3.配置临时环境变量:ex 阅读全文