Java 启用并发分块的服务器

Java server with concurrent chunking enabled

我一直在玩 Java 服务器示例:

https://github.com/FineUploader/server-examples/tree/master/java

它在启用分块的情况下工作得很好,但我认为它不支持在 JS 客户端中打开 concurrent:enabled 功能的分块。此功能在 Java 服务器中有效吗?有没有计划让它发挥作用?此外,如果没有,关于将此功能添加到示例代码中的位置的任何快速提示?如果需要,我很乐意实现这一点..

干杯!

J

Is this feature working in the Java server?

是的,这对任何服务器都是完全有效的。 Java example in the server-examples GitHub repository 没有为传统端点处理此问题的代码,但并发分块在上传到 S3 或 Azure 时无需任何代码更改即可正常工作。

Is there any plans to get this to work?

目前没有更新传统端点 Java 服务器示例的计划。

any quick tips as to where to add this feature into the example code?

您可以按照 the Node.js example, along with the concurrent chunking documentation 中的实现进行操作。