Tomcat 8的APR sendfile不发送小文件

时间:2016-11-09 20:16:03

标签: java tomcat tomcat8 sendfile apr

我正在尝试通过tomcat的APR模块发送文件,如https://tomcat.apache.org/tomcat-8.5-doc/aio.html中所述。它对于相对较大的文件(视频,大型PDF等)非常有效。但是它无法发送小文件(30-40 KB)。它似乎不是一个mime类型的问题,因为我用txt文件测试了它。无法发送30KB的txt文件,而10MB的txts就好了。

request.setAttribute("org.apache.tomcat.sendfile.filename", filepath.toAbsolutePath().toString());
request.setAttribute("org.apache.tomcat.sendfile.start", 0);
request.setAttribute("org.apache.tomcat.sendfile.end",Files.size(filepath));

我错过了一些配置吗?

0 个答案:

没有答案