Why is spawning threads in Java EE container discouraged?

前端 未结 9 1905
清歌不尽
清歌不尽 2020-11-22 04:50

One of the first things I\'ve learned about Java EE development is that I shouldn\'t spawn my own threads inside a Java EE container. But when I come to think about it, I do

9条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-22 05:52

    Threads are prohibited in Java EE containers according to the blueprints. Please refer to the blueprints for more information.

提交回复
热议问题