最佳答案
Is a Spring RestTemplate
thread-safe? That is
RestTemplate
a Strategy object that multiple connections can safely share. orRestTemplate
a connection object (like a data-base connection), which can not be shared while in use, and requires creation afresh, or pooling, for each connection.