Starting a threadpool in a servlet container

后端 未结 5 880
野性不改
野性不改 2021-01-14 14:27

I have a servlet S which handles callbacks from a 3rd party site.

The callback invocations happen in a specific order. Thus, I need to queue them.

I propos

5条回答
  •  难免孤独
    2021-01-14 14:47

    Oh, one other thought: the one thing you DO NOT WANT TO DO is to try managing your own thread pools inside a servlet container; it can do thread pooling a lot better than you can, UNLESS you mess with it.

提交回复
热议问题