I am working on a project in which I need to make a HTTP URL call to my server which is running Restful Service which returns back the response as a JSON String
A RestTemplate is thread safe once constructed, so you can construct one instance and have all your tasks share it. That will be much more efficient, because you eliminate the construction cost from each task, and reduce the load on the garbage collector.