阿神2017-04-18 10:57:05
Ssm projects generally do not use multi-threading. Where multi-threading is required, the framework or container has already implemented it for you
阿神2017-04-18 10:57:05
Every Servlet request is a thread. SpringMVC is implemented using Servlets. Of course, there are also businesses that use multi-threading. For example, in the training system, generating picture certificates for students is a time-consuming task, so you need to use Multi-threading, other things such as exporting a lot of data, batch importing data, etc. are likely to use multi-threading.