0

Can you configure a JBoss web application to be single threaded? Ie: only accept one incoming web request (ie: socket connection) at a time? Or is there a way to say max 3 concurrent connections? I know it's an unusual configuration but we were curious..

Marcus Leon
  • 55,199
  • 118
  • 297
  • 429

1 Answers1

4

Set maxThreads to 1 in the Connector element.

John Paulett
  • 15,596
  • 4
  • 45
  • 38