323334353637383940
@Override public void get(String resId, OutputStream os) throws IOException { GridFSDBFile dbFile = gridFsOperations.findOne( new Query(GridFsCriteria.where("id").is(resId))); if(dbFile!=null){ dbFile.writeTo(os); } } }