摘要: 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 阅读全文
posted @ 2022-07-14 18:53 苏黎世湖畔 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 下载代理模块代码 git clone https://gitee.com/web_design_of_web_frontend/ngx_http_proxy_connect_module.git 使用patch,注意拉取后的路径 patch -p1 < /home/zoms/ngx_http_pro 阅读全文
posted @ 2022-06-28 11:34 苏黎世湖畔 阅读(123) 评论(0) 推荐(0) 编辑
摘要: public final class ProxyProperties { private static boolean enable; private static String host; private static int port; private static String protoco 阅读全文
posted @ 2022-06-28 10:01 苏黎世湖畔 阅读(735) 评论(0) 推荐(0) 编辑
摘要: netstat -tunlp | grep 8080 阅读全文
posted @ 2022-06-01 16:07 苏黎世湖畔 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 在使用idea的过程中,遇到其中一个maven模块变成灰色,如下所示:造成这个的原因可能是忽略了maven模块,可以尝试如下解决方法:在idea中maven的setting中找到ignored files,看右边的面板中是否将变灰的maven模块忽略了。 阅读全文
posted @ 2022-03-15 14:34 苏黎世湖畔 阅读(685) 评论(0) 推荐(0) 编辑
摘要: 启动类捕获异常 try{ ApplicationContext applicationContext = SpringApplication.run(TestApplication.class, args);}catch (Exception e){ System.out.println(e.get 阅读全文
posted @ 2022-03-15 14:27 苏黎世湖畔 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2022-03-11 11:11 苏黎世湖畔 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 mysql类型以及所占字节如下: CHAR 0-255字节定长字符串 VARCHAR 0-65535字节变长字符串 TINYBLOB 0-255字节不超过255个字符的二进制字符串 TINYTEXT 0-255字节短文本字符串 BLOB 0-65535字节二进制形式的长文本数据 TEX 阅读全文
posted @ 2022-03-08 10:37 苏黎世湖畔 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 实现类 import java.awt.*; import java.awt.image.BufferedImage; import java.io.IOException; import java.io.OutputStream; import java.util.Random; import j 阅读全文
posted @ 2022-03-03 15:26 苏黎世湖畔 阅读(339) 评论(1) 推荐(1) 编辑
摘要: 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 阅读全文
posted @ 2022-02-23 09:38 苏黎世湖畔 阅读(535) 评论(0) 推荐(0) 编辑