java web项目中,jsp页面的video标签src=""如何填写?

我想播放项目文件中video文件夹下的movie1.mp4,请问src=""如何写?

jsp代码

<!DOCTYPE html>
    <html>
        <head>
        <meta charset="UTF-8">
        <title>Insert title here</title>
        <link rel="stylesheet" type="text/css" href="css/video.css" />
    </head>

    <body>
        <div class="video">
            <video controls="controls" >
                <source src="" type="video/mp4">
            </video>
        </div>
    </body>

</html>

项目目录

图片说明

/video/movie1.mp4 可以吗

我也感觉是/video/movie.mp4

相对路径好一些吧, ../video/movie1.mp4