Answering exactly your question:
- Method will be executed concurrently (multiple times in the same time if you have several threads).
- Requests will be handled concurrently.
You need to add the synchronized modifier if you are working with objects that require concurrent access.