Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何减少将文件从jsp上传到apche tomcat中的servlet并将其放入队列并在上传文件的同时开始其他事情的时间
服务器应该能够处理任何(合理)数量的同时请求:只需让上传发生并做其他事情!
现在,如果您使用带有表单的普通 HTTP POST,则无法在与上传“相同”的页面上执行此操作。相反,您必须使用其中一种基于 Flash 的上传工具,或者您可以使用 Javascipt 中的一种以其他方式发送上传(XMLHTTPRequest?)。然后您可以运行上传,但页面本身仍然可以正常工作。
您可以使用异步调用@Asynchronous
@Asynchronous