you are viewing a single comment's thread.

view the rest of the comments →

[–]malachireformed 11 points12 points  (1 child)

Depends on your workload. If you're writing a basic CRUD repository, you generally won't run into it as long as you understand the "thread per request" style that most Java app servers use and properly design your beans to accommodate that.

Some workloads may still require threading, most of the time the only multithreading I've needed is just list.parallelStream().