Controlling Bean Creation Order with @DependsOn Annotation 1. Overview Spring, by default, manages beans’ lifecycle and arranges their initialization order. But, we can still customize it based on our needs. We can choose either the SmartLifeCycle interface or the @DependsOn annotation for managing initialization order. This tutorial explores the @DependsOn annotation… Continue Reading spring-depends-on

HttpClient Connection Management 1. Overview In this article, we will go over the basics of connection management within the HttpClient 4. We’ll cover the use of BasichttpClientConnectionManager and PoolingHttpClientConnectionManager to enforce a safe, protocol compliant and efficient use of HTTP connections. 2. The BasicHttpClientConnectionManager for a Low Level, Single Threaded… Continue Reading httpclient-connection-management