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.
我想知道是否可以使用喷雾基于流而不是字节数组构建响应?
我想从特定的 URL 获取文件——使用Source.fromURL——并将其发布octet-stream到特定的 URL(例如,从 Nexus 获取文件并将其部署到 Tomcat)。
Source.fromURL
octet-stream
HttpEntity的缓冲方法是Array[Byte],所以我可以将整个文件读入内存并构建POST请求,它应该适用于较小的文件,尽管在大文件的情况下会消耗大量内存。
HttpEntity
Array[Byte]
POST