Home  >  Q&A  >  body text

java-web - SSM框架框架实际项目中,一般哪些功能会使用到java多线程

 你在实际项目中哪些功能使用到了Java的多线程呢? 
ringa_leeringa_lee2742 days ago799

reply all(2)I'll reply

  • 阿神

    阿神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

    reply
    0
  • 阿神

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

    reply
    0
  • Cancelreply