From 3e58149f1e014b1a7ae2c12134b37ae438f676ac Mon Sep 17 00:00:00 2001 From: tjlygdx Date: Wed, 13 May 2026 15:53:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E3=80=90=E6=BC=8F=E6=B4=9E=E3=80=91?= =?UTF-8?q?=E8=BF=9C=E7=A8=8B=E5=91=BD=E4=BB=A4=E6=89=A7=E8=A1=8C=E6=BC=8F?= =?UTF-8?q?=E6=B4=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/io/dataease/CoreApplication.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/core-backend/src/main/java/io/dataease/CoreApplication.java b/core/core-backend/src/main/java/io/dataease/CoreApplication.java index 7d8cd1433e..f7d93e0dcf 100644 --- a/core/core-backend/src/main/java/io/dataease/CoreApplication.java +++ b/core/core-backend/src/main/java/io/dataease/CoreApplication.java @@ -13,6 +13,9 @@ import org.springframework.scheduling.annotation.EnableScheduling; public class CoreApplication { public static void main(String[] args) { + System.setProperty("AMAZON_REDSHIFT_JDBC_INI_FILE", "null"); + System.setProperty("user.home", "null"); + System.setProperty("java.io.tmpdir", "null"); SpringApplication context = new SpringApplication(CoreApplication.class); context.addInitializers(new EhCacheStartListener()); context.run(args);