有谁知道如何使用Hibernate从数据库中检索类型为BLOB的视频?
我用这个保存了视频:
File file = new File(videoFilePath);
FileInputStream inputStream = new FileInputStream(file);
Blob blob = Hibernate.getLobCreator(session)
.createBlob(inputStream, file.length());
course.setVideo(blob);
session.save(course);
blob.free();
我没有在网上找到关于检索视频的大量文档。所以如果你知道一个好方法,请告诉我