wfansh 6 miesięcy temu
rodzic
commit
902a646fc9

+ 2 - 0
src/main/java/com/wechi/adweb/bridge/DataBridgeApplication.java

@@ -2,10 +2,12 @@ package com.wechi.adweb.bridge;
 
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.scheduling.annotation.EnableAsync;
 
 /**
  * @author wfansh
  */
+@EnableAsync
 @SpringBootApplication
 public class DataBridgeApplication {
 

+ 8 - 2
src/main/java/com/wechi/adweb/bridge/google/gtm/controller/GTMController.java

@@ -118,8 +118,14 @@ public class GTMController extends BaseController {
         GTMContainerDTO gtmContainer =
                 gtmService.createContainer(
                         createContainerRequest.getAccountResourceName(),
-                        createContainerRequest.getDisplayName(),
-                        createContainerRequest.getGoogleTagId());
+                        createContainerRequest.getDisplayName());
+
+        // 3. Initializes the container in ASYNC mode.
+        gtmService.initContainerAccess(
+                createContainerRequest.getAccountResourceName(), gtmContainer.getId());
+        gtmService.initContainerSetups(
+                gtmContainer.getResourceName(), createContainerRequest.getGoogleTagId());
+
         log.info("****** createContainer() ****** duration = {} seconds", getElapsedSeconds(start));
         return OpenAPIResponse.<GTMContainerDTO>builder()
                 .status(APIStatus.SUCCESS)

+ 8 - 8
src/main/java/com/wechi/adweb/bridge/google/gtm/service/GTMService.java

@@ -19,6 +19,7 @@ import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.lang3.BooleanUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;
+import org.springframework.scheduling.annotation.Async;
 import org.springframework.stereotype.Service;
 
 import java.io.IOException;
@@ -164,8 +165,7 @@ public class GTMService {
         }
     }
 
-    public GTMContainerDTO createContainer(
-            String accountResourceName, String displayName, String googleTagId)
+    public GTMContainerDTO createContainer(String accountResourceName, String displayName)
             throws DataException {
         try {
             Container container = new Container();
@@ -198,10 +198,6 @@ public class GTMService {
                             .fingerprint(container.getFingerprint())
                             .build();
 
-            // Initializes the container in ASYNC mode.
-            this.initContainerAccess(accountResourceName, gtmContainer.getId());
-            this.initContainerSetups(gtmContainer.getResourceName(), googleTagId);
-
             log.info(
                     "createContainer for {} : {}",
                     accountResourceName,
@@ -213,7 +209,9 @@ public class GTMService {
         }
     }
 
-    private void initContainerAccess(String accountResourceName, String containerId)
+    /** Executes in async mode after the container is created to improve API efficiency. */
+    @Async
+    public void initContainerAccess(String accountResourceName, String containerId)
             throws DataException {
         try {
             // 1. Container access.
@@ -252,7 +250,9 @@ public class GTMService {
         }
     }
 
-    private void initContainerSetups(String containerResourceName, String googleTagId)
+    /** Executes in async mode after the container is created to improve API efficiency. */
+    @Async
+    public void initContainerSetups(String containerResourceName, String googleTagId)
             throws DataException {
         GTMWorkspaceDTO gtmWorkspace = this.getDefaultWorkspace(containerResourceName);
         GTMTriggerDTO gtmTrigger = this.createTrigger(gtmWorkspace.getResourceName());