当spring返回FileSystemResource时,我无法使用html5视频导航(倒回)前进/前进

时间:2015-02-08 20:17:57

标签: html5 spring http spring-mvc video.js

我是html5视频的新手。我选择了 http://www.videojs.com/

我可以在我的页面上嵌入以下播放器,当我使用extrernal视频链接时效果很好:

http://vjs.zencdn.net/v/oceans.mp4

但是当我将以下视频存储在磁盘上并写下以下弹簧控制器时:

    @RequestMapping(method = RequestMethod.GET, value = "/testVideo")
    @ResponseBody
    public  FileSystemResource testVideo(Principal principal) throws IOException {
        return new FileSystemResource(new File("D:\\oceans.mp4"));

    }

/testVideo替换外部链接我发现我无法前后导航。

问题是什么(http标头错了?)?如何解决?

1 个答案:

答案 0 :(得分:0)

您需要支持字节范围请求,而不是返回整个文件。有关背景信息,请参阅this answer,但我不能说明如何在Spring中实现它。