我正在尝试显示来自spring mvc的视频。 但是视频没有在jsp中显示。 “images”已经在servlet dipacher xml中配置。
<c:set value="${fn:split('fName','.')}" var="separatorPosition" />
<c:set value="${separatorPosition[fn:length(separatorPosition)-1]}" var="vidType" />
<video id="my-video" class="video-js" controls preload="auto" width="530" height="264"
poster="<c:url value="/resources/images/music.png"></c:url>"
data-setup="{}">
<source src="<c:url value="/images/${post.filePath}"></c:url>" type='video/${vidType}'>
<p class="vjs-no-js"> To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p></video>