Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I a writing a webapp in Java 1.6 and running it in tomcat. While I am not doing any explicit threading, I wonder about what is going on behind the scenes with Spring and Tomcat. Would I run into any issues using StringBuilder instead of StringBuffer?

share|improve this question
possible duplicate of StringBuilder and StringBuffer in Java – Nambari Aug 23 '12 at 20:06
@thinksteep This question is suppose to focus on what sort of threading happens behind the scenes in webapps and how that affects String building. – Bob Roberts Aug 23 '12 at 20:08
4  
Probably not a duplicate. This seems to be more of a question about threading in Tomcat than the StringBuilder/StringBuffer classes themselves. – Mike M Aug 23 '12 at 20:08

3 Answers

up vote 7 down vote accepted

If you are using a local variable you can safely use StringBuilder. Each thread will get its own instance.

share|improve this answer
4  
+1. And if you are sharing strings between threads (e.g. by using static fields), then you should probably be using String rather than either StringBuilder or StringBuffer. – ruakh Aug 23 '12 at 20:09
3  
To emphasize ruakh's point: passing immutable data between threads is the safe approach. – Mike M Aug 23 '12 at 20:11

Usually Java EE components are not thread-safe by default, so unless you synchronize the blocks of code where you use the StringBuilder, you'll experience race-conditions. So, you either have to take care of synchronization or use StringBuffer.

Of course, as already mentioned if the StringBuilder is a local variable, you don't have to worry about that.

share|improve this answer

if the code is in a Servlet (doGet/doPost) then multiple requests will cause the servlet instance to be multi-threaded. If the code is in a Spring bean it will depend on whether you configured the bean to be a singleton or prototype.

share|improve this answer
To be more precise, you should say: that the servlet instance might be shared by multiple threads serving different clients. – Razvan Aug 23 '12 at 20:14
that is a better way of saying that. :) – Mike B Aug 23 '12 at 21:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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