We're using the PostMethod in org.apache.commons.httpclient.methods and noticed that the recycle method from the HttpMethod interface has been deprecated.

Is there an alternative to this method?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I think the idea is to simply create a new one.

The cost of creating new short lived objects is actually pretty cheap and a lot less error prone than attempting to maintain an object pool.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.