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) {