2

我想通过 HTML5 视频标签从我的 webapp 文件夹中播放一些 mp4 和 webm 视频文件。

但是我的问题是tomcat的状态码只有200:

Request URL:http://localhost:8080/resources/1.mp4
Request Method:GET
Status Code:200 OK

但是,当我从 apache 网络服务器执行相同操作时,我会得到状态码 206:

Request URL:http://localhost/1.mp4
Request Method:GET
Status Code:206 Partial Content

是否可以为 apache tomcat 激活代码 206。默认情况下,web.xml 中的 useAcceptRanges 为 [true]。

谢谢您的帮助。

4

1 回答 1

0

您需要自己实现 HTTP 范围支持。看到这个,几乎相同的问题/答案。

于 2012-11-29T14:36:07.007 回答