I am curious about how the following concepts typically execute inside a J2EE container, is one instance created per request, or does one instance serve all requests?
- Servlets
- Tags
I want to know this because lately i have been using a lot of StringBuffers in my custom tags, avoiding StringBuilder because it is not thread safe. Id like to know for sure how this stuff works so i can write better code