Commit 0566c29e authored by Andy Wilkinson's avatar Andy Wilkinson

Merge pull request #22112 from dreis2211

* gh-22112:
  Cleanup temporary files after Maven plugin execution

Closes gh-22112
parents 9dea67f7 021d9b59
......@@ -98,8 +98,7 @@ final class SizeCalculatingEntryWriter implements EntryWriter {
private OutputStream outputStream;
SizeCalculatingOutputStream() throws IOException {
this.tempFile = File.createTempFile("springboot-", "-entrycontent");
SizeCalculatingOutputStream() {
this.outputStream = new ByteArrayOutputStream();
}
......@@ -119,11 +118,19 @@ final class SizeCalculatingEntryWriter implements EntryWriter {
}
private OutputStream convertToFileOutputStream(ByteArrayOutputStream byteArrayOutputStream) throws IOException {
initializeTempFile();
FileOutputStream fileOutputStream = new FileOutputStream(this.tempFile);
StreamUtils.copy(byteArrayOutputStream.toByteArray(), fileOutputStream);
return fileOutputStream;
}
private void initializeTempFile() throws IOException {
if (this.tempFile == null) {
this.tempFile = File.createTempFile("springboot-", "-entrycontent");
this.tempFile.deleteOnExit();
}
}
@Override
public void close() throws IOException {
this.outputStream.close();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment