摘要:
public ResponseEntity<String> sendParamsMapForResponseEntity(String url, HttpMethod httpMethod, Map<String, String> headersMap, Map<String, Object> pa 阅读全文
摘要:
转载:https://www.xuebuyuan.com/3229489.html 阅读全文
摘要:
feign: httpclient: # feign最大连接数 max-connections: 200 # feign单个路径的最大连接数 max-connections-per-route: 50 okhttp: # 让feign使用Apache okhttp做请求,而不是默认的urlConne 阅读全文
摘要:
package com.chinaunicom.nvr.area.controller; import org.apache.http.client.HttpClient; import org.apache.http.client.config.RequestConfig; import org. 阅读全文
摘要:
1.请求方使用线程池 多线程请求 2.请求方 使用httpclient 一定要用 http线程池(减少建立tcp连接时的性能消耗) 3.处理方不变的数据放入redis缓存中 4.处理方的查询时的sql优化(整理出慢sql进行优化) 5.处理方集群部署。提高处理效率 阅读全文
摘要:
转发:https://blog.csdn.net/weixin_33724659/article/details/93338398?utm_medium=distribute.pc_relevant_right.none-task-blog-BlogCommendFromMachineLearnPa 阅读全文
摘要:
1.添加maven依赖 2.配置文件 数据库连接池参数解释: 3置DataSourceConfig配置 阅读全文
摘要:
package cn.com.zxf.atomic; import java.util.concurrent.atomic.AtomicInteger; public class AtomicExample implements Runnable{ private AtomicInteger ato 阅读全文