摘要:
使用了@Builder 将会失去无参构造函数 可以通过 @Tolerate 来添加构造函数 阅读全文
摘要:
Jmeter 测试dubbo 接口 1. 安装JMeter 安装到/usr/local下 2. github上下载 jmeter-plugins-dubbo-x.x.x-jar-with-dependencies.jar 将该jar 放到 jmeter安装目录的lib/ext 目录下 我的j 阅读全文
摘要:
dubbo 启动标志 Dubbo service server started <dubbo:reference id="transferTimingUploadHisRPCService" url="dubbo://100.118.67.3:20942" interface="com.sf.ids 阅读全文
摘要:
Mac 上安装和使用Nginx 1. 安装Nginx brew install nginx 2. 启动Nginx nginx 其他命令 重启Nginx nginx -s reload 关闭(停止)Nginx nginx -s stop 阅读全文
摘要:
在 nginx.conf 中配置以下内容 ... http { ... server { # 这里表示upstream 的连接、读取、发送超时时间都是300秒 proxy_connect_timeout 300; proxy_read_timeout 300; proxy_send_timeout 阅读全文
摘要:
最近操作Nginx.conf 的location部分,发现了一个巨坑,在这做个记录 当我用一下配置时 location = / { root /usr/share/nginx/html; index index.html index.htm; try_files $uri $uri/ /index. 阅读全文