Marcus Leon
Marcus Leon

Reputation: 56659

Can you configure a JBoss web app to be single threaded?

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..

Upvotes: 0

Views: 241

Answers (1)

John Paulett
John Paulett

Reputation: 15824

Set maxThreads to 1 in the Connector element.

Upvotes: 4

Related Questions