From fc19612ed1a0646673d05c3ac566cd344db8bbf9 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Wed, 17 Sep 2025 12:10:15 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=94=AF=E6=8C=81=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E4=B8=AD=E7=9A=84=E5=AF=86=E7=A0=81=E5=8F=AF?= =?UTF-8?q?=E9=80=89=E5=8A=A0=E5=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-backend/pom.xml | 49 ++++++++++--------- .../java/io/dataease/CoreApplication.java | 2 + 2 files changed, 29 insertions(+), 22 deletions(-) diff --git a/core/core-backend/pom.xml b/core/core-backend/pom.xml index 28b3f25e44..f1b3771125 100644 --- a/core/core-backend/pom.xml +++ b/core/core-backend/pom.xml @@ -28,6 +28,11 @@ DmDialect 6 + + com.github.ulisesbocchio + jasypt-spring-boot-starter + 3.0.5 + io.dataease api-base @@ -168,28 +173,28 @@ - - org.apache.maven.plugins - maven-antrun-plugin - - - copy-front-2-back - generate-resources - - - - - - - - - - - run - - - - + + + + + + + + + + + + + + + + + + + + + + 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 22a0ebcd73..67294692cc 100644 --- a/core/core-backend/src/main/java/io/dataease/CoreApplication.java +++ b/core/core-backend/src/main/java/io/dataease/CoreApplication.java @@ -1,5 +1,6 @@ package io.dataease; +import com.ulisesbocchio.jasyptspringboot.annotation.EnableEncryptableProperties; import io.dataease.listener.EhCacheStartListener; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @@ -12,6 +13,7 @@ import org.springframework.scheduling.annotation.EnableScheduling; @EnableCaching @EnableScheduling @EnableJpaRepositories(basePackages = "io.dataease") +@EnableEncryptableProperties public class CoreApplication { public static void main(String[] args) {