TRX před 11 měsíci
rodič
revize
d8e46ab2a9

binární
angel/docker/redis/store/dump.rdb


+ 13 - 0
centers/ApplicationCenter/Gateway/src/main/resources/application-local.yml

@@ -0,0 +1,13 @@
+spring:
+  data:
+    redis:
+      host: 127.0.0.1
+      port: 6379
+      database: 2
+      password: 8756redis2024
+
+
+
+
+
+

+ 22 - 0
centers/AuthCenter/AuthServer/src/test/java/com/github/microservice/auth/server/TestAuthEvent.java

@@ -0,0 +1,22 @@
+package com.github.microservice.auth.server;
+
+import com.github.microservice.auth.client.event.auth.OrganizationApplicationEvent;
+import org.springframework.context.ApplicationEvent;
+import org.springframework.stereotype.Component;
+
+import java.time.Clock;
+
+/**
+ * @author TRX
+ * @date 2024/5/29
+ */
+@Component
+public class TestAuthEvent extends OrganizationApplicationEvent {
+
+
+    public TestAuthEvent(Object source) {
+        super(source);
+    }
+
+
+}

+ 1 - 1
super/MSConfigure/pom.xml

@@ -28,7 +28,7 @@
         <!--JDK版本-->
         <java.version>17</java.version>
 
-        <!-- spring boot  -->
+        <!-- spring boot 3.3.4  3.4.0  -->
         <spring-boot.version>3.3.4</spring-boot.version>
         <!-- spring mvc -->
         <spring-mvc.version>6.1.13</spring-mvc.version>