Commit a9a32f39 authored by Andy Wilkinson's avatar Andy Wilkinson

Merge branch '2.2.x' into 2.3.x

Closes gh-23671
parents de685bdc 667ccdae
......@@ -20,6 +20,7 @@ import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.nio.file.Files;
import org.springframework.core.io.FileSystemResourceLoader;
import org.springframework.core.io.Resource;
......@@ -93,9 +94,7 @@ public class SpringBootMockServletContext extends MockServletContext {
try {
if (this.emptyRootDirectory == null) {
synchronized (this) {
File tempDirectory = File.createTempFile("spr", "servlet");
tempDirectory.delete();
tempDirectory.mkdirs();
File tempDirectory = Files.createTempDirectory("spr-servlet").toFile();
tempDirectory.deleteOnExit();
this.emptyRootDirectory = tempDirectory;
}
......
......@@ -19,6 +19,7 @@ package org.springframework.boot.web.server;
import java.io.File;
import java.io.IOException;
import java.net.InetAddress;
import java.nio.file.Files;
import java.util.Arrays;
import java.util.LinkedHashSet;
import java.util.Set;
......@@ -185,9 +186,7 @@ public abstract class AbstractConfigurableWebServerFactory implements Configurab
*/
protected final File createTempDir(String prefix) {
try {
File tempDir = File.createTempFile(prefix + ".", "." + getPort());
tempDir.delete();
tempDir.mkdir();
File tempDir = Files.createTempDirectory(prefix + "." + getPort() + ".").toFile();
tempDir.deleteOnExit();
return tempDir;
}
......
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