代码生成防止缓存内的数据没有及时写入到zip文件

This commit is contained in:
RuoYi 2019-12-02 16:09:20 +08:00
parent bc827ef377
commit 2e2882b0d5
1 changed files with 1 additions and 0 deletions

View File

@ -262,6 +262,7 @@ public class GenTableServiceImpl implements IGenTableService
zip.putNextEntry(new ZipEntry(VelocityUtils.getFileName(template, table))); zip.putNextEntry(new ZipEntry(VelocityUtils.getFileName(template, table)));
IOUtils.write(sw.toString(), zip, Constants.UTF8); IOUtils.write(sw.toString(), zip, Constants.UTF8);
IOUtils.closeQuietly(sw); IOUtils.closeQuietly(sw);
zip.flush();
zip.closeEntry(); zip.closeEntry();
} }
catch (IOException e) catch (IOException e)