|
@@ -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());
|