From 6704262899bea57ce99e3e20351984c109fef111 Mon Sep 17 00:00:00 2001 From: BoykoAlex Date: Wed, 18 Nov 2020 11:46:15 -0500 Subject: [PATCH] Unit test for startup metrics parsing, refactoring. --- .../AbstractInjectedIntoHoverProvider.java | 6 +- .../livehover/v2/RequestMappingMetrics.java | 10 + .../livehover/v2/SpringProcessLiveData.java | 8 +- ...SpringProcessLiveDataExtractorOverJMX.java | 6 +- ...tupModel.java => StartupMetricsModel.java} | 27 +- .../test/RequestMappingMetricsTest.java | 10 + .../java/metrics/test/StartupMetricsTest.java | 32 + .../harness/SpringProcessLiveDataBuilder.java | 8 +- .../test/resources/test-files/startup.json | 6906 +++++++++++++++++ 9 files changed, 6994 insertions(+), 19 deletions(-) rename headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/{StartupModel.java => StartupMetricsModel.java} (78%) create mode 100644 headless-services/spring-boot-language-server/src/test/resources/test-files/startup.json diff --git a/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/AbstractInjectedIntoHoverProvider.java b/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/AbstractInjectedIntoHoverProvider.java index ba824a548..331691f21 100644 --- a/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/AbstractInjectedIntoHoverProvider.java +++ b/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/AbstractInjectedIntoHoverProvider.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2017, 2019 Pivotal, Inc. + * Copyright (c) 2017, 2020 Pivotal, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -187,8 +187,8 @@ public abstract class AbstractInjectedIntoHoverProvider implements HoverProvider AutowiredHoverProvider.createHoverContentForBeans(sourceLinks, project, hover, wiredBeans); } - if (liveData.getStartup() != null) { - Duration instanciationTime = liveData.getStartup().getBeanInstanciationTime(definedBean.getId()); + if (liveData.getStartupMetrics() != null) { + Duration instanciationTime = liveData.getStartupMetrics().getBeanInstanciationTime(definedBean.getId()); if (instanciationTime != null) { hover.append("Instanciation Time: "); hover.append(instanciationTime.toMillis()); diff --git a/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/RequestMappingMetrics.java b/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/RequestMappingMetrics.java index 473146fc8..d60ab2b43 100644 --- a/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/RequestMappingMetrics.java +++ b/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/RequestMappingMetrics.java @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2020 Pivotal, Inc. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * https://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ package org.springframework.ide.vscode.boot.java.livehover.v2; import java.util.concurrent.TimeUnit; diff --git a/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/SpringProcessLiveData.java b/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/SpringProcessLiveData.java index 97e40b35d..71d1254de 100644 --- a/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/SpringProcessLiveData.java +++ b/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/SpringProcessLiveData.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2019 Pivotal, Inc. + * Copyright (c) 2019, 2020 Pivotal, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -29,12 +29,12 @@ public class SpringProcessLiveData { private final LiveConditional[] conditionals; private final LiveProperties properties; private final LiveMetricsModel metrics; - private StartupModel startup; + private StartupMetricsModel startup; public SpringProcessLiveData(String processName, String processID, String contextPath, String urlScheme, String port, String host, LiveBeansModel beansModel, String[] activeProfiles, LiveRequestMapping[] requestMappings, LiveConditional[] conditionals, LiveProperties properties, - LiveMetricsModel metrics, StartupModel startup) { + LiveMetricsModel metrics, StartupMetricsModel startup) { super(); this.processName = processName; this.processID = processID; @@ -100,7 +100,7 @@ public class SpringProcessLiveData { return this.metrics; } - public StartupModel getStartup() { + public StartupMetricsModel getStartupMetrics() { return startup; } diff --git a/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/SpringProcessLiveDataExtractorOverJMX.java b/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/SpringProcessLiveDataExtractorOverJMX.java index 9b624db95..aadc1b335 100644 --- a/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/SpringProcessLiveDataExtractorOverJMX.java +++ b/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/SpringProcessLiveDataExtractorOverJMX.java @@ -93,7 +93,7 @@ public class SpringProcessLiveDataExtractorOverJMX { LiveRequestMapping[] requestMappings = getRequestMappings(connection, domain); LiveBeansModel beans = getBeans(connection, domain); LiveMetricsModel metrics = getMetrics(connection, domain); - StartupModel startup = getStartup(connection, domain, currentData == null ? null : currentData.getStartup()); + StartupMetricsModel startup = getStartupMetrics(connection, domain, currentData == null ? null : currentData.getStartupMetrics()); if (contextPath == null) { contextPath = getContextPath(connection, domain, environment); @@ -164,14 +164,14 @@ public class SpringProcessLiveDataExtractorOverJMX { }; } - private StartupModel getStartup(MBeanServerConnection connection, String domain, StartupModel currentStartup) { + private StartupMetricsModel getStartupMetrics(MBeanServerConnection connection, String domain, StartupMetricsModel currentStartup) { if (currentStartup != null) { return currentStartup; } try { Map result = (Map) getActuatorDataFromOperation(connection, getObjectName(domain, "type=Endpoint,name=Startup"), "startup"); if (result != null) { - return StartupModel.parse(result); + return StartupMetricsModel.parse(result); } } catch (Exception e) { log.error("", e); diff --git a/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/StartupModel.java b/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/StartupMetricsModel.java similarity index 78% rename from headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/StartupModel.java rename to headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/StartupMetricsModel.java index 3c3429081..45bfc83b1 100644 --- a/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/StartupModel.java +++ b/headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/livehover/v2/StartupMetricsModel.java @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2020 Pivotal, Inc. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * https://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ package org.springframework.ide.vscode.boot.java.livehover.v2; import java.time.Duration; @@ -11,7 +21,13 @@ import com.google.gson.GsonBuilder; import com.google.gson.JsonDeserializer; import com.google.gson.reflect.TypeToken; -public class StartupModel { +/** + * POJO for Startup metrics data + * + * @author Alex Boyko + * + */ +public class StartupMetricsModel { private static final String BEAN_INSTANCIATION_EVENT = "spring.beans.instantiate"; @@ -106,13 +122,14 @@ public class StartupModel { } } - public static StartupModel parse(Map mapContent) { + public static StartupMetricsModel parse(Map mapContent) { Object timeline = mapContent.get("timeline"); if (timeline instanceof Map) { Object events = ((Map) timeline).get("events"); if (events instanceof List) { - List fromJson = gson.fromJson(gson.toJson(events), new TypeToken>() {}.getType()); - return new StartupModel(fromJson); + String json = gson.toJson(events); + List fromJson = gson.fromJson(json, new TypeToken>() {}.getType()); + return new StartupMetricsModel(fromJson); } } return null; @@ -122,7 +139,7 @@ public class StartupModel { private Map beanInstanciationTimes; - public StartupModel(List startupEvents) { + public StartupMetricsModel(List startupEvents) { this.startupEvents = startupEvents; beanInstanciationTimes = createbeanInstanciationTimes(); } diff --git a/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/metrics/test/RequestMappingMetricsTest.java b/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/metrics/test/RequestMappingMetricsTest.java index 1719c5b6d..d176b52ab 100644 --- a/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/metrics/test/RequestMappingMetricsTest.java +++ b/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/metrics/test/RequestMappingMetricsTest.java @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2020 Pivotal, Inc. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * https://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ package org.springframework.ide.vscode.boot.java.metrics.test; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/metrics/test/StartupMetricsTest.java b/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/metrics/test/StartupMetricsTest.java index 382918bb2..cda1dd022 100644 --- a/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/metrics/test/StartupMetricsTest.java +++ b/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/metrics/test/StartupMetricsTest.java @@ -1,5 +1,37 @@ +/******************************************************************************* + * Copyright (c) 2020 Pivotal, Inc. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * https://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Pivotal, Inc. - initial API and implementation + *******************************************************************************/ package org.springframework.ide.vscode.boot.java.metrics.test; +import static org.junit.Assert.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.io.InputStreamReader; +import java.time.Duration; +import java.util.Map; + +import org.junit.Test; +import org.springframework.ide.vscode.boot.java.livehover.v2.StartupMetricsModel; + +import com.google.gson.Gson; + public class StartupMetricsTest { + + @Test + public void testParser() throws Exception { + Gson gson = new Gson(); + Map mapContent = gson.fromJson(new InputStreamReader(getClass().getResourceAsStream("/test-files/startup.json")), Map.class); + StartupMetricsModel startupMetricsModel = StartupMetricsModel.parse(mapContent); + assertNotNull(startupMetricsModel); + assertEquals(419, startupMetricsModel.getStartupEvents().size()); + assertEquals(Duration.ofNanos(10298253), startupMetricsModel.getBeanInstanciationTime("ownerController")); + } } diff --git a/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/project/harness/SpringProcessLiveDataBuilder.java b/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/project/harness/SpringProcessLiveDataBuilder.java index 4e9565c98..7960e446f 100644 --- a/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/project/harness/SpringProcessLiveDataBuilder.java +++ b/headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/project/harness/SpringProcessLiveDataBuilder.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2019 Pivotal, Inc. + * Copyright (c) 2019, 2020 Pivotal, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -23,7 +23,7 @@ import org.springframework.ide.vscode.boot.java.livehover.v2.LiveMetricsModel; import org.springframework.ide.vscode.boot.java.livehover.v2.LiveProperties; import org.springframework.ide.vscode.boot.java.livehover.v2.LiveRequestMapping; import org.springframework.ide.vscode.boot.java.livehover.v2.LiveRequestMappingBoot1xRequestMapping; -import org.springframework.ide.vscode.boot.java.livehover.v2.StartupModel; +import org.springframework.ide.vscode.boot.java.livehover.v2.StartupMetricsModel; import org.springframework.ide.vscode.boot.java.livehover.v2.SpringProcessLiveData; /** @@ -45,7 +45,7 @@ public class SpringProcessLiveDataBuilder { private LiveConditional[] conditionals; private LiveProperties properties; private LiveMetricsModel metrics; - private StartupModel startup; + private StartupMetricsModel startup; public SpringProcessLiveDataBuilder processName(String processName) { this.processName = processName; @@ -131,7 +131,7 @@ public class SpringProcessLiveDataBuilder { return this; } - public SpringProcessLiveDataBuilder liveStartup(StartupModel startup) { + public SpringProcessLiveDataBuilder liveStartup(StartupMetricsModel startup) { this.startup = startup; return this; } diff --git a/headless-services/spring-boot-language-server/src/test/resources/test-files/startup.json b/headless-services/spring-boot-language-server/src/test/resources/test-files/startup.json new file mode 100644 index 000000000..4d8a5c7cb --- /dev/null +++ b/headless-services/spring-boot-language-server/src/test/resources/test-files/startup.json @@ -0,0 +1,6906 @@ +{ + "springBootVersion": "2.4.0", + "timeline": { + "events": [ + { + "startupStep": { + "name": "spring.boot.application.starting", + "id": 1, + "parentId": 0, + "tags": [ + { + "key": "mainApplicationClass", + "value": "org.springframework.samples.petclinic.PetClinicApplication" + } + ] + }, + "startTime": "2020-11-18T15:15:50.507137783Z", + "endTime": "2020-11-18T15:15:50.522662840Z", + "duration": "PT0.015525057S" + }, + { + "startupStep": { + "name": "spring.boot.application.environment-prepared", + "id": 2, + "parentId": 0, + "tags": [] + }, + "startTime": "2020-11-18T15:15:50.612951810Z", + "endTime": "2020-11-18T15:15:50.821586750Z", + "duration": "PT0.20863494S" + }, + { + "startupStep": { + "name": "spring.boot.application.context-prepared", + "id": 3, + "parentId": 0, + "tags": [] + }, + "startTime": "2020-11-18T15:15:50.923162798Z", + "endTime": "2020-11-18T15:15:50.923359783Z", + "duration": "PT0.000196985S" + }, + { + "startupStep": { + "name": "spring.boot.application.context-loaded", + "id": 4, + "parentId": 0, + "tags": [] + }, + "startTime": "2020-11-18T15:15:50.974137009Z", + "endTime": "2020-11-18T15:15:50.980715401Z", + "duration": "PT0.006578392S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 8, + "parentId": 7, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory" + } + ] + }, + "startTime": "2020-11-18T15:15:51.036110948Z", + "endTime": "2020-11-18T15:15:51.037924678Z", + "duration": "PT0.00181373S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 7, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.context.annotation.internalConfigurationAnnotationProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:51.016421863Z", + "endTime": "2020-11-18T15:15:51.054781282Z", + "duration": "PT0.038359419S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 11, + "parentId": 10, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.AutoConfigurationPackages" + }, + { + "key": "beanType", + "value": "class org.springframework.boot.autoconfigure.AutoConfigurationPackages$BasePackages" + } + ] + }, + "startTime": "2020-11-18T15:15:52.131998733Z", + "endTime": "2020-11-18T15:15:52.132362441Z", + "duration": "PT0.000363708S" + }, + { + "startupStep": { + "name": "spring.context.config-classes.parse", + "id": 10, + "parentId": 9, + "tags": [ + { + "key": "classCount", + "value": "162" + } + ] + }, + "startTime": "2020-11-18T15:15:51.066689606Z", + "endTime": "2020-11-18T15:15:52.301228125Z", + "duration": "PT1.234538519S" + }, + { + "startupStep": { + "name": "spring.context.beandef-registry.post-process", + "id": 9, + "parentId": 6, + "tags": [ + { + "key": "postProcessor", + "value": "org.springframework.context.annotation.ConfigurationClassPostProcessor@2c8a2e4c" + } + ] + }, + "startTime": "2020-11-18T15:15:51.054830275Z", + "endTime": "2020-11-18T15:15:52.323257222Z", + "duration": "PT1.268426947S" + }, + { + "startupStep": { + "name": "spring.context.bean-factory.post-process", + "id": 12, + "parentId": 6, + "tags": [ + { + "key": "postProcessor", + "value": "org.springframework.boot.autoconfigure.SharedMetadataReaderFactoryContextInitializer$CachingMetadataReaderFactoryPostProcessor@17cd61d5" + } + ] + }, + "startTime": "2020-11-18T15:15:52.325059826Z", + "endTime": "2020-11-18T15:15:52.325288996Z", + "duration": "PT0.00022917S" + }, + { + "startupStep": { + "name": "spring.context.bean-factory.post-process", + "id": 13, + "parentId": 6, + "tags": [ + { + "key": "postProcessor", + "value": "org.springframework.boot.context.ConfigurationWarningsApplicationContextInitializer$ConfigurationWarningsPostProcessor@313d7025" + } + ] + }, + "startTime": "2020-11-18T15:15:52.325298149Z", + "endTime": "2020-11-18T15:15:52.325307824Z", + "duration": "PT0.000009675S" + }, + { + "startupStep": { + "name": "spring.context.config-classes.enhance", + "id": 15, + "parentId": 14, + "tags": [] + }, + "startTime": "2020-11-18T15:15:52.325322408Z", + "endTime": "2020-11-18T15:15:52.325910497Z", + "duration": "PT0.000588089S" + }, + { + "startupStep": { + "name": "spring.context.bean-factory.post-process", + "id": 14, + "parentId": 6, + "tags": [ + { + "key": "postProcessor", + "value": "org.springframework.context.annotation.ConfigurationClassPostProcessor@2c8a2e4c" + } + ] + }, + "startTime": "2020-11-18T15:15:52.325310536Z", + "endTime": "2020-11-18T15:15:52.326219661Z", + "duration": "PT0.000909125S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 16, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "propertySourcesPlaceholderConfigurer" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanFactoryPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.326643294Z", + "endTime": "2020-11-18T15:15:52.330348998Z", + "duration": "PT0.003705704S" + }, + { + "startupStep": { + "name": "spring.context.bean-factory.post-process", + "id": 17, + "parentId": 6, + "tags": [ + { + "key": "postProcessor", + "value": "org.springframework.context.support.PropertySourcesPlaceholderConfigurer@44f1ab6e" + } + ] + }, + "startTime": "2020-11-18T15:15:52.330380614Z", + "endTime": "2020-11-18T15:15:52.333903151Z", + "duration": "PT0.003522537S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 18, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration$CacheManagerEntityManagerFactoryDependsOnPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanFactoryPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.333928312Z", + "endTime": "2020-11-18T15:15:52.334345228Z", + "duration": "PT0.000416916S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 19, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "emBeanDefinitionRegistrarPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanFactoryPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.334354631Z", + "endTime": "2020-11-18T15:15:52.334494082Z", + "duration": "PT0.000139451S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 20, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.devtools.autoconfigure.DevToolsDataSourceAutoConfiguration$DatabaseShutdownExecutorEntityManagerFactoryDependsOnPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanFactoryPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.334500728Z", + "endTime": "2020-11-18T15:15:52.334574496Z", + "duration": "PT0.000073768S" + }, + { + "startupStep": { + "name": "spring.context.bean-factory.post-process", + "id": 21, + "parentId": 6, + "tags": [ + { + "key": "postProcessor", + "value": "org.springframework.data.jpa.repository.support.EntityManagerBeanDefinitionRegistrarPostProcessor@224c9a6c" + } + ] + }, + "startTime": "2020-11-18T15:15:52.334616747Z", + "endTime": "2020-11-18T15:15:52.337426165Z", + "duration": "PT0.002809418S" + }, + { + "startupStep": { + "name": "spring.context.bean-factory.post-process", + "id": 22, + "parentId": 6, + "tags": [ + { + "key": "postProcessor", + "value": "org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration$CacheManagerEntityManagerFactoryDependsOnPostProcessor@4633d79f" + } + ] + }, + "startTime": "2020-11-18T15:15:52.337435026Z", + "endTime": "2020-11-18T15:15:52.338829651Z", + "duration": "PT0.001394625S" + }, + { + "startupStep": { + "name": "spring.context.bean-factory.post-process", + "id": 23, + "parentId": 6, + "tags": [ + { + "key": "postProcessor", + "value": "org.springframework.boot.devtools.autoconfigure.DevToolsDataSourceAutoConfiguration$DatabaseShutdownExecutorEntityManagerFactoryDependsOnPostProcessor@3e82d245" + } + ] + }, + "startTime": "2020-11-18T15:15:52.338837054Z", + "endTime": "2020-11-18T15:15:52.339524185Z", + "duration": "PT0.000687131S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 24, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.context.event.internalEventListenerProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanFactoryPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.339537151Z", + "endTime": "2020-11-18T15:15:52.340582776Z", + "duration": "PT0.001045625S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 25, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "preserveErrorControllerTargetClassPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanFactoryPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.340595604Z", + "endTime": "2020-11-18T15:15:52.340739123Z", + "duration": "PT0.000143519S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 27, + "parentId": 26, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.context.event.internalEventListenerFactory" + } + ] + }, + "startTime": "2020-11-18T15:15:52.341288125Z", + "endTime": "2020-11-18T15:15:52.341374696Z", + "duration": "PT0.000086571S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 28, + "parentId": 26, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.transaction.config.internalTransactionalEventListenerFactory" + } + ] + }, + "startTime": "2020-11-18T15:15:52.341383421Z", + "endTime": "2020-11-18T15:15:52.341514083Z", + "duration": "PT0.000130662S" + }, + { + "startupStep": { + "name": "spring.context.bean-factory.post-process", + "id": 26, + "parentId": 6, + "tags": [ + { + "key": "postProcessor", + "value": "org.springframework.context.event.EventListenerMethodProcessor@64b2588d" + } + ] + }, + "startTime": "2020-11-18T15:15:52.340744767Z", + "endTime": "2020-11-18T15:15:52.341549173Z", + "duration": "PT0.000804406S" + }, + { + "startupStep": { + "name": "spring.context.bean-factory.post-process", + "id": 29, + "parentId": 6, + "tags": [ + { + "key": "postProcessor", + "value": "org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$PreserveErrorControllerTargetClassPostProcessor@5f2234d" + } + ] + }, + "startTime": "2020-11-18T15:15:52.341552773Z", + "endTime": "2020-11-18T15:15:52.342576389Z", + "duration": "PT0.001023616S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 30, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.context.annotation.internalAutowiredAnnotationProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.344515507Z", + "endTime": "2020-11-18T15:15:52.345665150Z", + "duration": "PT0.001149643S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 31, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.context.annotation.internalCommonAnnotationProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.345680977Z", + "endTime": "2020-11-18T15:15:52.349050910Z", + "duration": "PT0.003369933S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 32, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.context.annotation.internalPersistenceAnnotationProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.349074785Z", + "endTime": "2020-11-18T15:15:52.349423465Z", + "duration": "PT0.00034868S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 35, + "parentId": 34, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.context.internalConfigurationPropertiesBinderFactory" + }, + { + "key": "beanType", + "value": "class org.springframework.boot.context.properties.ConfigurationPropertiesBinder$Factory" + } + ] + }, + "startTime": "2020-11-18T15:15:52.349589042Z", + "endTime": "2020-11-18T15:15:52.349681309Z", + "duration": "PT0.000092267S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 34, + "parentId": 33, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.context.internalConfigurationPropertiesBinder" + }, + { + "key": "beanType", + "value": "class org.springframework.boot.context.properties.ConfigurationPropertiesBinder" + } + ] + }, + "startTime": "2020-11-18T15:15:52.349527962Z", + "endTime": "2020-11-18T15:15:52.351431412Z", + "duration": "PT0.00190345S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 33, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.349439599Z", + "endTime": "2020-11-18T15:15:52.351445899Z", + "duration": "PT0.0020063S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 36, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.aop.config.internalAutoProxyCreator" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.351556362Z", + "endTime": "2020-11-18T15:15:52.385064401Z", + "duration": "PT0.033508039S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 38, + "parentId": 37, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter" + } + ] + }, + "startTime": "2020-11-18T15:15:52.410090432Z", + "endTime": "2020-11-18T15:15:52.411349627Z", + "duration": "PT0.001259195S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 37, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "methodValidationPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.385084381Z", + "endTime": "2020-11-18T15:15:52.420910937Z", + "duration": "PT0.035826556S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 39, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "dataSourceInitializerPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.420928456Z", + "endTime": "2020-11-18T15:15:52.421148317Z", + "duration": "PT0.000219861S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 40, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "persistenceExceptionTranslationPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.421159703Z", + "endTime": "2020-11-18T15:15:52.423192111Z", + "duration": "PT0.002032408S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 41, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "webServerFactoryCustomizerBeanPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.423227484Z", + "endTime": "2020-11-18T15:15:52.423449431Z", + "duration": "PT0.000221947S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 42, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "errorPageRegistrarBeanPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.423456980Z", + "endTime": "2020-11-18T15:15:52.423603110Z", + "duration": "PT0.00014613S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 43, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "dataSourceInitializedPublisher" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.423609904Z", + "endTime": "2020-11-18T15:15:52.426180130Z", + "duration": "PT0.002570226S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 50, + "parentId": 49, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.427262649Z", + "endTime": "2020-11-18T15:15:52.461076099Z", + "duration": "PT0.03381345S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 51, + "parentId": 49, + "tags": [ + { + "key": "beanName", + "value": "transactionAttributeSource" + } + ] + }, + "startTime": "2020-11-18T15:15:52.461887254Z", + "endTime": "2020-11-18T15:15:52.466107541Z", + "duration": "PT0.004220287S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 52, + "parentId": 49, + "tags": [ + { + "key": "beanName", + "value": "transactionInterceptor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.466599770Z", + "endTime": "2020-11-18T15:15:52.472066952Z", + "duration": "PT0.005467182S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 49, + "parentId": 48, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.transaction.config.internalTransactionAdvisor" + }, + { + "key": "beanType", + "value": "interface org.springframework.aop.Advisor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.427228390Z", + "endTime": "2020-11-18T15:15:52.474300489Z", + "duration": "PT0.047072099S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 48, + "parentId": 47, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.cache.jcache.config.ProxyJCacheConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.427170956Z", + "endTime": "2020-11-18T15:15:52.479735806Z", + "duration": "PT0.05256485S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 53, + "parentId": 47, + "tags": [ + { + "key": "beanName", + "value": "jCacheOperationSource" + } + ] + }, + "startTime": "2020-11-18T15:15:52.480447359Z", + "endTime": "2020-11-18T15:15:52.489037130Z", + "duration": "PT0.008589771S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 54, + "parentId": 47, + "tags": [ + { + "key": "beanName", + "value": "jCacheInterceptor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.489578697Z", + "endTime": "2020-11-18T15:15:52.495439230Z", + "duration": "PT0.005860533S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 47, + "parentId": 46, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.cache.config.internalJCacheAdvisor" + }, + { + "key": "beanType", + "value": "interface org.springframework.aop.Advisor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.427143623Z", + "endTime": "2020-11-18T15:15:52.496154976Z", + "duration": "PT0.069011353S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 46, + "parentId": 45, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.cache.annotation.ProxyCachingConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.427024131Z", + "endTime": "2020-11-18T15:15:52.500111357Z", + "duration": "PT0.073087226S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 55, + "parentId": 45, + "tags": [ + { + "key": "beanName", + "value": "cacheOperationSource" + } + ] + }, + "startTime": "2020-11-18T15:15:52.500800130Z", + "endTime": "2020-11-18T15:15:52.505602387Z", + "duration": "PT0.004802257S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 56, + "parentId": 45, + "tags": [ + { + "key": "beanName", + "value": "cacheInterceptor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.506097560Z", + "endTime": "2020-11-18T15:15:52.510389432Z", + "duration": "PT0.004291872S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 45, + "parentId": 44, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.cache.config.internalCacheAdvisor" + }, + { + "key": "beanType", + "value": "interface org.springframework.aop.Advisor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.426966359Z", + "endTime": "2020-11-18T15:15:52.511334534Z", + "duration": "PT0.084368175S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 44, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "healthEndpointGroupsBeanPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.426192185Z", + "endTime": "2020-11-18T15:15:52.514705163Z", + "duration": "PT0.088512978S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 57, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "meterRegistryPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.514722677Z", + "endTime": "2020-11-18T15:15:52.516663179Z", + "duration": "PT0.001940502S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 58, + "parentId": 6, + "tags": [ + { + "key": "beanName", + "value": "projectingArgumentResolverBeanPostProcessor" + }, + { + "key": "beanType", + "value": "interface org.springframework.beans.factory.config.BeanPostProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:52.516677601Z", + "endTime": "2020-11-18T15:15:52.531140851Z", + "duration": "PT0.01446325S" + }, + { + "startupStep": { + "name": "spring.context.beans.post-process", + "id": 6, + "parentId": 5, + "tags": [] + }, + "startTime": "2020-11-18T15:15:50.999377733Z", + "endTime": "2020-11-18T15:15:52.531266661Z", + "duration": "PT1.531888928S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 60, + "parentId": 59, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.531416441Z", + "endTime": "2020-11-18T15:15:52.532786200Z", + "duration": "PT0.001369759S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 62, + "parentId": 61, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.context.properties.BoundConfigurationProperties" + }, + { + "key": "beanType", + "value": "class org.springframework.boot.context.properties.BoundConfigurationProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:52.535541760Z", + "endTime": "2020-11-18T15:15:52.536009204Z", + "duration": "PT0.000467444S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 63, + "parentId": 61, + "tags": [ + { + "key": "beanName", + "value": "conversionService" + }, + { + "key": "beanType", + "value": "interface org.springframework.core.convert.ConversionService" + }, + { + "key": "exception", + "value": "class org.springframework.beans.factory.NoSuchBeanDefinitionException" + }, + { + "key": "message", + "value": "No bean named \u0027conversionService\u0027 available" + } + ] + }, + "startTime": "2020-11-18T15:15:52.538266592Z", + "endTime": "2020-11-18T15:15:52.538749528Z", + "duration": "PT0.000482936S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 61, + "parentId": 59, + "tags": [ + { + "key": "beanName", + "value": "messageSourceProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:52.533334756Z", + "endTime": "2020-11-18T15:15:52.544124729Z", + "duration": "PT0.010789973S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 59, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "messageSource" + }, + { + "key": "beanType", + "value": "interface org.springframework.context.MessageSource" + } + ] + }, + "startTime": "2020-11-18T15:15:52.531304406Z", + "endTime": "2020-11-18T15:15:52.551798611Z", + "duration": "PT0.020494205S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 66, + "parentId": 65, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat" + } + ] + }, + "startTime": "2020-11-18T15:15:52.553736709Z", + "endTime": "2020-11-18T15:15:52.554144067Z", + "duration": "PT0.000407358S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 68, + "parentId": 67, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.591699778Z", + "endTime": "2020-11-18T15:15:52.592021930Z", + "duration": "PT0.000322152S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 67, + "parentId": 65, + "tags": [ + { + "key": "beanName", + "value": "websocketServletWebServerCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:52.591625699Z", + "endTime": "2020-11-18T15:15:52.593641274Z", + "duration": "PT0.002015575S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 70, + "parentId": 69, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.593703329Z", + "endTime": "2020-11-18T15:15:52.595417382Z", + "duration": "PT0.001714053S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 71, + "parentId": 69, + "tags": [ + { + "key": "beanName", + "value": "server-org.springframework.boot.autoconfigure.web.ServerProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:52.596125377Z", + "endTime": "2020-11-18T15:15:52.609568592Z", + "duration": "PT0.013443215S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 69, + "parentId": 65, + "tags": [ + { + "key": "beanName", + "value": "servletWebServerFactoryCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:52.593654268Z", + "endTime": "2020-11-18T15:15:52.610958237Z", + "duration": "PT0.017303969S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 72, + "parentId": 65, + "tags": [ + { + "key": "beanName", + "value": "tomcatServletWebServerFactoryCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:52.610970605Z", + "endTime": "2020-11-18T15:15:52.612023441Z", + "duration": "PT0.001052836S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 74, + "parentId": 73, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.612069402Z", + "endTime": "2020-11-18T15:15:52.612408379Z", + "duration": "PT0.000338977S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 73, + "parentId": 65, + "tags": [ + { + "key": "beanName", + "value": "tomcatWebServerFactoryCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:52.612031759Z", + "endTime": "2020-11-18T15:15:52.614356427Z", + "duration": "PT0.002324668S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 76, + "parentId": 75, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.614488310Z", + "endTime": "2020-11-18T15:15:52.616606958Z", + "duration": "PT0.002118648S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 75, + "parentId": 65, + "tags": [ + { + "key": "beanName", + "value": "localeCharsetMappingsCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:52.614364897Z", + "endTime": "2020-11-18T15:15:52.617309418Z", + "duration": "PT0.002944521S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 78, + "parentId": 77, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.640591058Z", + "endTime": "2020-11-18T15:15:52.641871250Z", + "duration": "PT0.001280192S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 80, + "parentId": 79, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.642206139Z", + "endTime": "2020-11-18T15:15:52.642528862Z", + "duration": "PT0.000322723S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 82, + "parentId": 81, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.642955138Z", + "endTime": "2020-11-18T15:15:52.643586082Z", + "duration": "PT0.000630944S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 83, + "parentId": 81, + "tags": [ + { + "key": "beanName", + "value": "spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:52.643935504Z", + "endTime": "2020-11-18T15:15:52.647837765Z", + "duration": "PT0.003902261S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 81, + "parentId": 79, + "tags": [ + { + "key": "beanName", + "value": "dispatcherServlet" + } + ] + }, + "startTime": "2020-11-18T15:15:52.642909668Z", + "endTime": "2020-11-18T15:15:52.662649642Z", + "duration": "PT0.019739974S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 86, + "parentId": 85, + "tags": [ + { + "key": "beanName", + "value": "spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:52.665532621Z", + "endTime": "2020-11-18T15:15:52.669300460Z", + "duration": "PT0.003767839S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 85, + "parentId": 84, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.664678215Z", + "endTime": "2020-11-18T15:15:52.669747230Z", + "duration": "PT0.005069015S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 84, + "parentId": 79, + "tags": [ + { + "key": "beanName", + "value": "multipartConfigElement" + } + ] + }, + "startTime": "2020-11-18T15:15:52.664599428Z", + "endTime": "2020-11-18T15:15:52.671395753Z", + "duration": "PT0.006796325S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 79, + "parentId": 77, + "tags": [ + { + "key": "beanName", + "value": "dispatcherServletRegistration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.642164616Z", + "endTime": "2020-11-18T15:15:52.674596686Z", + "duration": "PT0.03243207S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 77, + "parentId": 65, + "tags": [ + { + "key": "beanName", + "value": "errorPageCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:52.640511423Z", + "endTime": "2020-11-18T15:15:52.674975867Z", + "duration": "PT0.034464444S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 65, + "parentId": 64, + "tags": [ + { + "key": "beanName", + "value": "tomcatServletWebServerFactory" + }, + { + "key": "beanType", + "value": "interface org.springframework.boot.web.servlet.server.ServletWebServerFactory" + } + ] + }, + "startTime": "2020-11-18T15:15:52.553643082Z", + "endTime": "2020-11-18T15:15:52.679084414Z", + "duration": "PT0.125441332S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 89, + "parentId": 88, + "tags": [ + { + "key": "beanName", + "value": "management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:52.956621793Z", + "endTime": "2020-11-18T15:15:52.960796987Z", + "duration": "PT0.004175194S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 88, + "parentId": 87, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.web.servlet.WebMvcMetricsAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.956112948Z", + "endTime": "2020-11-18T15:15:52.961490779Z", + "duration": "PT0.005377831S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 91, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.961947297Z", + "endTime": "2020-11-18T15:15:52.962614427Z", + "duration": "PT0.00066713S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 93, + "parentId": 92, + "tags": [ + { + "key": "beanName", + "value": "management.metrics.export.simple-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:52.963407068Z", + "endTime": "2020-11-18T15:15:52.964478717Z", + "duration": "PT0.001071649S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 92, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "simpleConfig" + } + ] + }, + "startTime": "2020-11-18T15:15:52.963009744Z", + "endTime": "2020-11-18T15:15:52.968829726Z", + "duration": "PT0.005819982S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 95, + "parentId": 94, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:52.969548257Z", + "endTime": "2020-11-18T15:15:52.970149309Z", + "duration": "PT0.000601052S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 94, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "micrometerClock" + } + ] + }, + "startTime": "2020-11-18T15:15:52.969450881Z", + "endTime": "2020-11-18T15:15:52.971021420Z", + "duration": "PT0.001570539S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 96, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "propertiesMeterFilter" + } + ] + }, + "startTime": "2020-11-18T15:15:53.043927402Z", + "endTime": "2020-11-18T15:15:53.046812832Z", + "duration": "PT0.00288543S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 98, + "parentId": 97, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.046888543Z", + "endTime": "2020-11-18T15:15:53.047164161Z", + "duration": "PT0.000275618S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 97, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "metricsHttpClientUriTagFilter" + } + ] + }, + "startTime": "2020-11-18T15:15:53.046843047Z", + "endTime": "2020-11-18T15:15:53.050434386Z", + "duration": "PT0.003591339S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 99, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "metricsHttpServerUriTagFilter" + } + ] + }, + "startTime": "2020-11-18T15:15:53.050477040Z", + "endTime": "2020-11-18T15:15:53.051201450Z", + "duration": "PT0.00072441S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 101, + "parentId": 100, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.052310653Z", + "endTime": "2020-11-18T15:15:53.052783716Z", + "duration": "PT0.000473063S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 100, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "jvmGcMetrics" + } + ] + }, + "startTime": "2020-11-18T15:15:53.052253993Z", + "endTime": "2020-11-18T15:15:53.057366544Z", + "duration": "PT0.005112551S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 102, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "jvmMemoryMetrics" + } + ] + }, + "startTime": "2020-11-18T15:15:53.057410529Z", + "endTime": "2020-11-18T15:15:53.058141872Z", + "duration": "PT0.000731343S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 103, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "jvmThreadMetrics" + } + ] + }, + "startTime": "2020-11-18T15:15:53.058176642Z", + "endTime": "2020-11-18T15:15:53.058869254Z", + "duration": "PT0.000692612S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 104, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "classLoaderMetrics" + } + ] + }, + "startTime": "2020-11-18T15:15:53.058899779Z", + "endTime": "2020-11-18T15:15:53.059454954Z", + "duration": "PT0.000555175S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 106, + "parentId": 105, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.059531561Z", + "endTime": "2020-11-18T15:15:53.060037669Z", + "duration": "PT0.000506108S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 105, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "logbackMetrics" + } + ] + }, + "startTime": "2020-11-18T15:15:53.059481851Z", + "endTime": "2020-11-18T15:15:53.061743768Z", + "duration": "PT0.002261917S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 108, + "parentId": 107, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.061844165Z", + "endTime": "2020-11-18T15:15:53.062218040Z", + "duration": "PT0.000373875S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 107, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "uptimeMetrics" + } + ] + }, + "startTime": "2020-11-18T15:15:53.061784913Z", + "endTime": "2020-11-18T15:15:53.062597029Z", + "duration": "PT0.000812116S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 109, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "processorMetrics" + } + ] + }, + "startTime": "2020-11-18T15:15:53.062621950Z", + "endTime": "2020-11-18T15:15:53.063510779Z", + "duration": "PT0.000888829S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 110, + "parentId": 90, + "tags": [ + { + "key": "beanName", + "value": "fileDescriptorMetrics" + } + ] + }, + "startTime": "2020-11-18T15:15:53.063532088Z", + "endTime": "2020-11-18T15:15:53.064239619Z", + "duration": "PT0.000707531S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 90, + "parentId": 87, + "tags": [ + { + "key": "beanName", + "value": "simpleMeterRegistry" + } + ] + }, + "startTime": "2020-11-18T15:15:52.961839635Z", + "endTime": "2020-11-18T15:15:53.085272206Z", + "duration": "PT0.123432571S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 111, + "parentId": 87, + "tags": [ + { + "key": "beanName", + "value": "webMvcTagsProvider" + } + ] + }, + "startTime": "2020-11-18T15:15:53.085793204Z", + "endTime": "2020-11-18T15:15:53.087056299Z", + "duration": "PT0.001263095S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 87, + "parentId": 64, + "tags": [ + { + "key": "beanName", + "value": "webMvcMetricsFilter" + }, + { + "key": "beanType", + "value": "interface org.springframework.boot.web.servlet.ServletContextInitializer" + } + ] + }, + "startTime": "2020-11-18T15:15:52.956031177Z", + "endTime": "2020-11-18T15:15:53.089349691Z", + "duration": "PT0.133318514S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 113, + "parentId": 112, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.089428002Z", + "endTime": "2020-11-18T15:15:53.089794235Z", + "duration": "PT0.000366233S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 114, + "parentId": 112, + "tags": [ + { + "key": "beanName", + "value": "spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:53.090244441Z", + "endTime": "2020-11-18T15:15:53.091426860Z", + "duration": "PT0.001182419S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 116, + "parentId": 115, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari" + } + ] + }, + "startTime": "2020-11-18T15:15:53.092420926Z", + "endTime": "2020-11-18T15:15:53.092699680Z", + "duration": "PT0.000278754S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 117, + "parentId": 115, + "tags": [ + { + "key": "beanName", + "value": "spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:53.093178924Z", + "endTime": "2020-11-18T15:15:53.105634793Z", + "duration": "PT0.012455869S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 118, + "parentId": 115, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker" + }, + { + "key": "beanType", + "value": "class org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker" + } + ] + }, + "startTime": "2020-11-18T15:15:53.138780488Z", + "endTime": "2020-11-18T15:15:53.526969204Z", + "duration": "PT0.388188716S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 115, + "parentId": 112, + "tags": [ + { + "key": "beanName", + "value": "dataSource" + } + ] + }, + "startTime": "2020-11-18T15:15:53.092360918Z", + "endTime": "2020-11-18T15:15:53.527160931Z", + "duration": "PT0.434800013S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 112, + "parentId": 64, + "tags": [ + { + "key": "beanName", + "value": "h2Console" + }, + { + "key": "beanType", + "value": "interface org.springframework.boot.web.servlet.ServletContextInitializer" + } + ] + }, + "startTime": "2020-11-18T15:15:53.089362702Z", + "endTime": "2020-11-18T15:15:53.528087945Z", + "duration": "PT0.438725243S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 120, + "parentId": 119, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.528170817Z", + "endTime": "2020-11-18T15:15:53.528466689Z", + "duration": "PT0.000295872S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 119, + "parentId": 64, + "tags": [ + { + "key": "beanName", + "value": "resourceUrlEncodingFilter" + }, + { + "key": "beanType", + "value": "interface org.springframework.boot.web.servlet.ServletContextInitializer" + } + ] + }, + "startTime": "2020-11-18T15:15:53.528105373Z", + "endTime": "2020-11-18T15:15:53.528843592Z", + "duration": "PT0.000738219S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 122, + "parentId": 121, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.528894607Z", + "endTime": "2020-11-18T15:15:53.529146281Z", + "duration": "PT0.000251674S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 123, + "parentId": 121, + "tags": [ + { + "key": "beanName", + "value": "management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:53.529748551Z", + "endTime": "2020-11-18T15:15:53.532178090Z", + "duration": "PT0.002429539S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 125, + "parentId": 124, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.532719001Z", + "endTime": "2020-11-18T15:15:53.533031106Z", + "duration": "PT0.000312105S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 127, + "parentId": 126, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.535535394Z", + "endTime": "2020-11-18T15:15:53.536671806Z", + "duration": "PT0.001136412S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 126, + "parentId": 124, + "tags": [ + { + "key": "beanName", + "value": "webEndpointPathMapper" + } + ] + }, + "startTime": "2020-11-18T15:15:53.535473587Z", + "endTime": "2020-11-18T15:15:53.537528779Z", + "duration": "PT0.002055192S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 129, + "parentId": 128, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.538104649Z", + "endTime": "2020-11-18T15:15:53.538351872Z", + "duration": "PT0.000247223S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 128, + "parentId": 124, + "tags": [ + { + "key": "beanName", + "value": "servletExposeExcludePropertyEndpointFilter" + } + ] + }, + "startTime": "2020-11-18T15:15:53.538062306Z", + "endTime": "2020-11-18T15:15:53.538905401Z", + "duration": "PT0.000843095S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 124, + "parentId": 121, + "tags": [ + { + "key": "beanName", + "value": "servletEndpointDiscoverer" + } + ] + }, + "startTime": "2020-11-18T15:15:53.532663055Z", + "endTime": "2020-11-18T15:15:53.543403095Z", + "duration": "PT0.01074004S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 121, + "parentId": 64, + "tags": [ + { + "key": "beanName", + "value": "servletEndpointRegistrar" + }, + { + "key": "beanType", + "value": "interface org.springframework.boot.web.servlet.ServletContextInitializer" + } + ] + }, + "startTime": "2020-11-18T15:15:53.528857277Z", + "endTime": "2020-11-18T15:15:53.555302825Z", + "duration": "PT0.026445548S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 130, + "parentId": 64, + "tags": [ + { + "key": "beanName", + "value": "requestContextFilter" + }, + { + "key": "beanType", + "value": "interface javax.servlet.Filter" + } + ] + }, + "startTime": "2020-11-18T15:15:53.559340579Z", + "endTime": "2020-11-18T15:15:53.561610858Z", + "duration": "PT0.002270279S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 132, + "parentId": 131, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.561723654Z", + "endTime": "2020-11-18T15:15:53.562194009Z", + "duration": "PT0.000470355S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 131, + "parentId": 64, + "tags": [ + { + "key": "beanName", + "value": "formContentFilter" + }, + { + "key": "beanType", + "value": "interface javax.servlet.Filter" + } + ] + }, + "startTime": "2020-11-18T15:15:53.561649982Z", + "endTime": "2020-11-18T15:15:53.566133689Z", + "duration": "PT0.004483707S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 133, + "parentId": 64, + "tags": [ + { + "key": "beanName", + "value": "characterEncodingFilter" + }, + { + "key": "beanType", + "value": "interface javax.servlet.Filter" + } + ] + }, + "startTime": "2020-11-18T15:15:53.566154335Z", + "endTime": "2020-11-18T15:15:53.568467753Z", + "duration": "PT0.002313418S" + }, + { + "startupStep": { + "name": "spring.boot.webserver.create", + "id": 64, + "parentId": 5, + "tags": [ + { + "key": "factory", + "value": "class org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory" + } + ] + }, + "startTime": "2020-11-18T15:15:52.553164985Z", + "endTime": "2020-11-18T15:15:53.611959559Z", + "duration": "PT1.058794574S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 135, + "parentId": 134, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.614904051Z", + "endTime": "2020-11-18T15:15:53.615274960Z", + "duration": "PT0.000370909S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 137, + "parentId": 136, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.616822156Z", + "endTime": "2020-11-18T15:15:53.617986542Z", + "duration": "PT0.001164386S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 138, + "parentId": 136, + "tags": [ + { + "key": "beanName", + "value": "objectNamingStrategy" + } + ] + }, + "startTime": "2020-11-18T15:15:53.618471803Z", + "endTime": "2020-11-18T15:15:53.620519007Z", + "duration": "PT0.002047204S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 139, + "parentId": 136, + "tags": [ + { + "key": "beanName", + "value": "mbeanServer" + }, + { + "key": "beanType", + "value": "interface javax.management.MBeanServer" + } + ] + }, + "startTime": "2020-11-18T15:15:53.628187864Z", + "endTime": "2020-11-18T15:15:53.633968301Z", + "duration": "PT0.005780437S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 136, + "parentId": 134, + "tags": [ + { + "key": "beanName", + "value": "mbeanExporter" + } + ] + }, + "startTime": "2020-11-18T15:15:53.616739054Z", + "endTime": "2020-11-18T15:15:53.636929162Z", + "duration": "PT0.020190108S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 134, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "springApplicationAdminRegistrar" + }, + { + "key": "beanType", + "value": "interface org.springframework.context.ApplicationListener" + } + ] + }, + "startTime": "2020-11-18T15:15:53.614809506Z", + "endTime": "2020-11-18T15:15:53.639269511Z", + "duration": "PT0.024460005S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 141, + "parentId": 140, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.devtools.autoconfigure.LocalDevToolsAutoConfiguration$LiveReloadConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.639533990Z", + "endTime": "2020-11-18T15:15:53.639807479Z", + "duration": "PT0.000273489S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 144, + "parentId": 143, + "tags": [ + { + "key": "beanName", + "value": "spring.devtools-org.springframework.boot.devtools.autoconfigure.DevToolsProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:53.642063024Z", + "endTime": "2020-11-18T15:15:53.644613579Z", + "duration": "PT0.002550555S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 143, + "parentId": 142, + "tags": [ + { + "key": "beanName", + "value": "liveReloadServer" + } + ] + }, + "startTime": "2020-11-18T15:15:53.641076452Z", + "endTime": "2020-11-18T15:15:53.646743986Z", + "duration": "PT0.005667534S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 142, + "parentId": 140, + "tags": [ + { + "key": "beanName", + "value": "optionalLiveReloadServer" + } + ] + }, + "startTime": "2020-11-18T15:15:53.640429281Z", + "endTime": "2020-11-18T15:15:53.648496561Z", + "duration": "PT0.00806728S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 140, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "liveReloadServerEventListener" + }, + { + "key": "beanType", + "value": "interface org.springframework.context.ApplicationListener" + } + ] + }, + "startTime": "2020-11-18T15:15:53.639461442Z", + "endTime": "2020-11-18T15:15:53.649294777Z", + "duration": "PT0.009833335S" + }, + { + "startupStep": { + "name": "spring.event.invoke-listener", + "id": 145, + "parentId": 5, + "tags": [ + { + "key": "event", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceSchemaCreatedEvent[source\u003dHikariDataSource (HikariPool-1)]" + }, + { + "key": "eventType", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceSchemaCreatedEvent" + }, + { + "key": "listener", + "value": "org.springframework.boot.devtools.restart.RestartApplicationListener@10134bf" + } + ] + }, + "startTime": "2020-11-18T15:15:53.649441083Z", + "endTime": "2020-11-18T15:15:53.649923876Z", + "duration": "PT0.000482793S" + }, + { + "startupStep": { + "name": "spring.event.invoke-listener", + "id": 146, + "parentId": 5, + "tags": [ + { + "key": "event", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceSchemaCreatedEvent[source\u003dHikariDataSource (HikariPool-1)]" + }, + { + "key": "eventType", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceSchemaCreatedEvent" + }, + { + "key": "listener", + "value": "org.springframework.boot.context.config.DelegatingApplicationListener@3eb7b5c2" + } + ] + }, + "startTime": "2020-11-18T15:15:53.649928942Z", + "endTime": "2020-11-18T15:15:53.649939564Z", + "duration": "PT0.000010622S" + }, + { + "startupStep": { + "name": "spring.event.invoke-listener", + "id": 147, + "parentId": 5, + "tags": [ + { + "key": "event", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceSchemaCreatedEvent[source\u003dHikariDataSource (HikariPool-1)]" + }, + { + "key": "eventType", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceSchemaCreatedEvent" + }, + { + "key": "listener", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker@4116aeaa" + } + ] + }, + "startTime": "2020-11-18T15:15:53.649941975Z", + "endTime": "2020-11-18T15:15:53.649952271Z", + "duration": "PT0.000010296S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 150, + "parentId": 149, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.cache.JCacheCacheConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.650484301Z", + "endTime": "2020-11-18T15:15:53.650893176Z", + "duration": "PT0.000408875S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 152, + "parentId": 151, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.651404577Z", + "endTime": "2020-11-18T15:15:53.651815093Z", + "duration": "PT0.000410516S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 151, + "parentId": 149, + "tags": [ + { + "key": "beanName", + "value": "cacheManagerCustomizers" + } + ] + }, + "startTime": "2020-11-18T15:15:53.651362740Z", + "endTime": "2020-11-18T15:15:53.652881347Z", + "duration": "PT0.001518607S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 154, + "parentId": 153, + "tags": [ + { + "key": "beanName", + "value": "spring.cache-org.springframework.boot.autoconfigure.cache.CacheProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:53.654042578Z", + "endTime": "2020-11-18T15:15:53.656028967Z", + "duration": "PT0.001986389S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 156, + "parentId": 155, + "tags": [ + { + "key": "beanName", + "value": "cacheConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.786680630Z", + "endTime": "2020-11-18T15:15:53.787034972Z", + "duration": "PT0.000354342S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 155, + "parentId": 153, + "tags": [ + { + "key": "beanName", + "value": "petclinicCacheConfigurationCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:53.786613616Z", + "endTime": "2020-11-18T15:15:53.787677256Z", + "duration": "PT0.00106364S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 153, + "parentId": 149, + "tags": [ + { + "key": "beanName", + "value": "jCacheCacheManager" + } + ] + }, + "startTime": "2020-11-18T15:15:53.653377515Z", + "endTime": "2020-11-18T15:15:53.907245625Z", + "duration": "PT0.25386811S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 149, + "parentId": 148, + "tags": [ + { + "key": "beanName", + "value": "cacheManager" + } + ] + }, + "startTime": "2020-11-18T15:15:53.650423404Z", + "endTime": "2020-11-18T15:15:53.910904216Z", + "duration": "PT0.260480812S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 158, + "parentId": 157, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.devtools.autoconfigure.DevToolsDataSourceAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.910983242Z", + "endTime": "2020-11-18T15:15:53.911259117Z", + "duration": "PT0.000275875S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 157, + "parentId": 148, + "tags": [ + { + "key": "beanName", + "value": "inMemoryDatabaseShutdownExecutor" + } + ] + }, + "startTime": "2020-11-18T15:15:53.910921990Z", + "endTime": "2020-11-18T15:15:53.912318564Z", + "duration": "PT0.001396574S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 160, + "parentId": 159, + "tags": [ + { + "key": "beanName", + "value": "spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:53.913430270Z", + "endTime": "2020-11-18T15:15:53.915063936Z", + "duration": "PT0.001633666S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 161, + "parentId": 159, + "tags": [ + { + "key": "beanName", + "value": "spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:53.915606522Z", + "endTime": "2020-11-18T15:15:53.917481985Z", + "duration": "PT0.001875463S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 163, + "parentId": 162, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.919670771Z", + "endTime": "2020-11-18T15:15:53.919928889Z", + "duration": "PT0.000258118S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 162, + "parentId": 159, + "tags": [ + { + "key": "beanName", + "value": "hikariPoolDataSourceMetadataProvider" + } + ] + }, + "startTime": "2020-11-18T15:15:53.919535319Z", + "endTime": "2020-11-18T15:15:53.920383878Z", + "duration": "PT0.000848559S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 159, + "parentId": 148, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.912409048Z", + "endTime": "2020-11-18T15:15:53.923490352Z", + "duration": "PT0.011081304S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 165, + "parentId": 164, + "tags": [ + { + "key": "beanName", + "value": "jpaVendorAdapter" + } + ] + }, + "startTime": "2020-11-18T15:15:53.925301355Z", + "endTime": "2020-11-18T15:15:53.933335119Z", + "duration": "PT0.008033764S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 167, + "parentId": 166, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.934318987Z", + "endTime": "2020-11-18T15:15:53.934648622Z", + "duration": "PT0.000329635S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 169, + "parentId": 168, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:53.935051652Z", + "endTime": "2020-11-18T15:15:53.935336027Z", + "duration": "PT0.000284375S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 171, + "parentId": 170, + "tags": [ + { + "key": "beanName", + "value": "spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:53.936370530Z", + "endTime": "2020-11-18T15:15:53.937673544Z", + "duration": "PT0.001303014S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 170, + "parentId": 168, + "tags": [ + { + "key": "beanName", + "value": "taskExecutorBuilder" + } + ] + }, + "startTime": "2020-11-18T15:15:53.935626002Z", + "endTime": "2020-11-18T15:15:53.939226224Z", + "duration": "PT0.003600222S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 168, + "parentId": 166, + "tags": [ + { + "key": "beanName", + "value": "applicationTaskExecutor" + } + ] + }, + "startTime": "2020-11-18T15:15:53.935003386Z", + "endTime": "2020-11-18T15:15:53.944953096Z", + "duration": "PT0.00994971S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 166, + "parentId": 164, + "tags": [ + { + "key": "beanName", + "value": "entityManagerFactoryBootstrapExecutorCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:53.934261852Z", + "endTime": "2020-11-18T15:15:53.945563627Z", + "duration": "PT0.011301775S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 164, + "parentId": 148, + "tags": [ + { + "key": "beanName", + "value": "entityManagerFactoryBuilder" + } + ] + }, + "startTime": "2020-11-18T15:15:53.924152604Z", + "endTime": "2020-11-18T15:15:53.946410614Z", + "duration": "PT0.02225801S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 172, + "parentId": 148, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.domain.EntityScanPackages" + }, + { + "key": "beanType", + "value": "class org.springframework.boot.autoconfigure.domain.EntityScanPackages" + }, + { + "key": "exception", + "value": "class org.springframework.beans.factory.NoSuchBeanDefinitionException" + }, + { + "key": "message", + "value": "No bean named \u0027org.springframework.boot.autoconfigure.domain.EntityScanPackages\u0027 available" + } + ] + }, + "startTime": "2020-11-18T15:15:53.954465060Z", + "endTime": "2020-11-18T15:15:53.954490736Z", + "duration": "PT0.000025676S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 148, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "\u0026entityManagerFactory" + } + ] + }, + "startTime": "2020-11-18T15:15:53.650381220Z", + "endTime": "2020-11-18T15:15:53.985574153Z", + "duration": "PT0.335192933S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 173, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "petClinicApplication" + } + ] + }, + "startTime": "2020-11-18T15:15:53.985649054Z", + "endTime": "2020-11-18T15:15:53.986022005Z", + "duration": "PT0.000372951S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 174, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "ownerController" + } + ] + }, + "startTime": "2020-11-18T15:15:53.986288053Z", + "endTime": "2020-11-18T15:15:53.996586306Z", + "duration": "PT0.010298253S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 175, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "petController" + } + ] + }, + "startTime": "2020-11-18T15:15:53.996606438Z", + "endTime": "2020-11-18T15:15:54.002107862Z", + "duration": "PT0.005501424S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 176, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "petTypeFormatter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.002125119Z", + "endTime": "2020-11-18T15:15:54.003105334Z", + "duration": "PT0.000980215S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 177, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "visitController" + } + ] + }, + "startTime": "2020-11-18T15:15:54.003114046Z", + "endTime": "2020-11-18T15:15:54.003668748Z", + "duration": "PT0.000554702S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 178, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "crashController" + } + ] + }, + "startTime": "2020-11-18T15:15:54.003677235Z", + "endTime": "2020-11-18T15:15:54.004064198Z", + "duration": "PT0.000386963S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 179, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "welcomeController" + } + ] + }, + "startTime": "2020-11-18T15:15:54.004072832Z", + "endTime": "2020-11-18T15:15:54.004339546Z", + "duration": "PT0.000266714S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 180, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "vetController" + } + ] + }, + "startTime": "2020-11-18T15:15:54.004346901Z", + "endTime": "2020-11-18T15:15:54.006922844Z", + "duration": "PT0.002575943S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 181, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.006952355Z", + "endTime": "2020-11-18T15:15:54.007222347Z", + "duration": "PT0.000269992S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 182, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.007233142Z", + "endTime": "2020-11-18T15:15:54.007416892Z", + "duration": "PT0.00018375S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 183, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.007433288Z", + "endTime": "2020-11-18T15:15:54.007662748Z", + "duration": "PT0.00022946S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 184, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.007673481Z", + "endTime": "2020-11-18T15:15:54.007961823Z", + "duration": "PT0.000288342S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 185, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "defaultValidator" + } + ] + }, + "startTime": "2020-11-18T15:15:54.007969157Z", + "endTime": "2020-11-18T15:15:54.016477237Z", + "duration": "PT0.00850808S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 187, + "parentId": 186, + "tags": [ + { + "key": "beanName", + "value": "spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.018034514Z", + "endTime": "2020-11-18T15:15:54.021670328Z", + "duration": "PT0.003635814S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 188, + "parentId": 186, + "tags": [ + { + "key": "beanName", + "value": "spring.web-org.springframework.boot.autoconfigure.web.WebProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.022071025Z", + "endTime": "2020-11-18T15:15:54.022905419Z", + "duration": "PT0.000834394S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 186, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.016495600Z", + "endTime": "2020-11-18T15:15:54.023104719Z", + "duration": "PT0.006609119S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 189, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "conventionErrorViewResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.023116790Z", + "endTime": "2020-11-18T15:15:54.025104047Z", + "duration": "PT0.001987257S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 190, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "errorAttributes" + } + ] + }, + "startTime": "2020-11-18T15:15:54.025121436Z", + "endTime": "2020-11-18T15:15:54.026373280Z", + "duration": "PT0.001251844S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 191, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "basicErrorController" + } + ] + }, + "startTime": "2020-11-18T15:15:54.026383746Z", + "endTime": "2020-11-18T15:15:54.032364524Z", + "duration": "PT0.005980778S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 195, + "parentId": 194, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$ResourceChainCustomizerConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.047678918Z", + "endTime": "2020-11-18T15:15:54.047917488Z", + "duration": "PT0.00023857S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 194, + "parentId": 193, + "tags": [ + { + "key": "beanName", + "value": "resourceHandlerRegistrationCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:54.047636193Z", + "endTime": "2020-11-18T15:15:54.050348526Z", + "duration": "PT0.002712333S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 193, + "parentId": 192, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.046697317Z", + "endTime": "2020-11-18T15:15:54.051402668Z", + "duration": "PT0.004705351S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 196, + "parentId": 192, + "tags": [ + { + "key": "beanName", + "value": "metricsWebMvcConfigurer" + } + ] + }, + "startTime": "2020-11-18T15:15:54.051446919Z", + "endTime": "2020-11-18T15:15:54.052808717Z", + "duration": "PT0.001361798S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 200, + "parentId": 199, + "tags": [ + { + "key": "beanName", + "value": "spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.056213890Z", + "endTime": "2020-11-18T15:15:54.056982475Z", + "duration": "PT0.000768585S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 199, + "parentId": 198, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.055751194Z", + "endTime": "2020-11-18T15:15:54.057371716Z", + "duration": "PT0.001620522S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 198, + "parentId": 197, + "tags": [ + { + "key": "beanName", + "value": "pageableCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:54.055701248Z", + "endTime": "2020-11-18T15:15:54.058054226Z", + "duration": "PT0.002352978S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 201, + "parentId": 197, + "tags": [ + { + "key": "beanName", + "value": "sortCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:54.058646056Z", + "endTime": "2020-11-18T15:15:54.059159473Z", + "duration": "PT0.000513417S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 197, + "parentId": 192, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.data.web.config.SpringDataWebConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.052836047Z", + "endTime": "2020-11-18T15:15:54.059710547Z", + "duration": "PT0.0068745S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 192, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.032384448Z", + "endTime": "2020-11-18T15:15:54.061885002Z", + "duration": "PT0.029500554S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 203, + "parentId": 202, + "tags": [ + { + "key": "beanName", + "value": "mvcContentNegotiationManager" + } + ] + }, + "startTime": "2020-11-18T15:15:54.063330521Z", + "endTime": "2020-11-18T15:15:54.069228764Z", + "duration": "PT0.005898243S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 204, + "parentId": 202, + "tags": [ + { + "key": "beanName", + "value": "mvcConversionService" + } + ] + }, + "startTime": "2020-11-18T15:15:54.069935521Z", + "endTime": "2020-11-18T15:15:54.081809504Z", + "duration": "PT0.011873983S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 205, + "parentId": 202, + "tags": [ + { + "key": "beanName", + "value": "mvcValidator" + } + ] + }, + "startTime": "2020-11-18T15:15:54.082558874Z", + "endTime": "2020-11-18T15:15:54.084769230Z", + "duration": "PT0.002210356S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 207, + "parentId": 206, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.100707485Z", + "endTime": "2020-11-18T15:15:54.101055033Z", + "duration": "PT0.000347548S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 209, + "parentId": 208, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.103272470Z", + "endTime": "2020-11-18T15:15:54.103536349Z", + "duration": "PT0.000263879S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 208, + "parentId": 206, + "tags": [ + { + "key": "beanName", + "value": "stringHttpMessageConverter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.103226877Z", + "endTime": "2020-11-18T15:15:54.107789657Z", + "duration": "PT0.00456278S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 211, + "parentId": 210, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.108035187Z", + "endTime": "2020-11-18T15:15:54.108254619Z", + "duration": "PT0.000219432S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 213, + "parentId": 212, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.108778024Z", + "endTime": "2020-11-18T15:15:54.108954143Z", + "duration": "PT0.000176119S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 215, + "parentId": 214, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.109367114Z", + "endTime": "2020-11-18T15:15:54.109536469Z", + "duration": "PT0.000169355S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 217, + "parentId": 216, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.109994746Z", + "endTime": "2020-11-18T15:15:54.110276890Z", + "duration": "PT0.000282144S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 218, + "parentId": 216, + "tags": [ + { + "key": "beanName", + "value": "spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.110547348Z", + "endTime": "2020-11-18T15:15:54.112307309Z", + "duration": "PT0.001759961S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 216, + "parentId": 214, + "tags": [ + { + "key": "beanName", + "value": "standardJacksonObjectMapperBuilderCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:54.109962361Z", + "endTime": "2020-11-18T15:15:54.112803007Z", + "duration": "PT0.002840646S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 220, + "parentId": 219, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.113707331Z", + "endTime": "2020-11-18T15:15:54.113893897Z", + "duration": "PT0.000186566S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 219, + "parentId": 214, + "tags": [ + { + "key": "beanName", + "value": "parameterNamesModule" + } + ] + }, + "startTime": "2020-11-18T15:15:54.113663121Z", + "endTime": "2020-11-18T15:15:54.118059452Z", + "duration": "PT0.004396331S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 222, + "parentId": 221, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.118141579Z", + "endTime": "2020-11-18T15:15:54.118436556Z", + "duration": "PT0.000294977S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 221, + "parentId": 214, + "tags": [ + { + "key": "beanName", + "value": "jsonComponentModule" + } + ] + }, + "startTime": "2020-11-18T15:15:54.118076886Z", + "endTime": "2020-11-18T15:15:54.123003387Z", + "duration": "PT0.004926501S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 224, + "parentId": 223, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.data.web.config.SpringDataJacksonConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.123106627Z", + "endTime": "2020-11-18T15:15:54.123469556Z", + "duration": "PT0.000362929S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 223, + "parentId": 214, + "tags": [ + { + "key": "beanName", + "value": "jacksonGeoModule" + } + ] + }, + "startTime": "2020-11-18T15:15:54.123022784Z", + "endTime": "2020-11-18T15:15:54.127229521Z", + "duration": "PT0.004206737S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 214, + "parentId": 212, + "tags": [ + { + "key": "beanName", + "value": "jacksonObjectMapperBuilder" + } + ] + }, + "startTime": "2020-11-18T15:15:54.109321897Z", + "endTime": "2020-11-18T15:15:54.128960722Z", + "duration": "PT0.019638825S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 212, + "parentId": 210, + "tags": [ + { + "key": "beanName", + "value": "jacksonObjectMapper" + } + ] + }, + "startTime": "2020-11-18T15:15:54.108744431Z", + "endTime": "2020-11-18T15:15:54.148351499Z", + "duration": "PT0.039607068S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 210, + "parentId": 206, + "tags": [ + { + "key": "beanName", + "value": "mappingJackson2HttpMessageConverter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.107977427Z", + "endTime": "2020-11-18T15:15:54.149839954Z", + "duration": "PT0.041862527S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 206, + "parentId": 202, + "tags": [ + { + "key": "beanName", + "value": "messageConverters" + } + ] + }, + "startTime": "2020-11-18T15:15:54.100632183Z", + "endTime": "2020-11-18T15:15:54.153663185Z", + "duration": "PT0.053031002S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 225, + "parentId": 202, + "tags": [ + { + "key": "beanName", + "value": "sortResolver" + }, + { + "key": "beanType", + "value": "class org.springframework.data.web.SortHandlerMethodArgumentResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.154863375Z", + "endTime": "2020-11-18T15:15:54.160478636Z", + "duration": "PT0.005615261S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 226, + "parentId": 202, + "tags": [ + { + "key": "beanName", + "value": "pageableResolver" + }, + { + "key": "beanType", + "value": "class org.springframework.data.web.PageableHandlerMethodArgumentResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.160511346Z", + "endTime": "2020-11-18T15:15:54.163103155Z", + "duration": "PT0.002591809S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 202, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "requestMappingHandlerAdapter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.061897098Z", + "endTime": "2020-11-18T15:15:54.232330052Z", + "duration": "PT0.170432954S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 228, + "parentId": 227, + "tags": [ + { + "key": "beanName", + "value": "mvcResourceUrlProvider" + } + ] + }, + "startTime": "2020-11-18T15:15:54.233895158Z", + "endTime": "2020-11-18T15:15:54.238710448Z", + "duration": "PT0.00481529S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 227, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "requestMappingHandlerMapping" + } + ] + }, + "startTime": "2020-11-18T15:15:54.232380282Z", + "endTime": "2020-11-18T15:15:54.315210835Z", + "duration": "PT0.082830553S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 229, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "welcomePageHandlerMapping" + } + ] + }, + "startTime": "2020-11-18T15:15:54.315226952Z", + "endTime": "2020-11-18T15:15:54.322825006Z", + "duration": "PT0.007598054S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 230, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "localeResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.322839155Z", + "endTime": "2020-11-18T15:15:54.324228899Z", + "duration": "PT0.001389744S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 231, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "mvcUrlPathHelper" + } + ] + }, + "startTime": "2020-11-18T15:15:54.324243226Z", + "endTime": "2020-11-18T15:15:54.324780632Z", + "duration": "PT0.000537406S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 232, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "mvcPathMatcher" + } + ] + }, + "startTime": "2020-11-18T15:15:54.324789828Z", + "endTime": "2020-11-18T15:15:54.325302713Z", + "duration": "PT0.000512885S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 233, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "viewControllerHandlerMapping" + } + ] + }, + "startTime": "2020-11-18T15:15:54.325311343Z", + "endTime": "2020-11-18T15:15:54.326292709Z", + "duration": "PT0.000981366S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 234, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "beanNameHandlerMapping" + } + ] + }, + "startTime": "2020-11-18T15:15:54.326303090Z", + "endTime": "2020-11-18T15:15:54.330130198Z", + "duration": "PT0.003827108S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 235, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "routerFunctionMapping" + } + ] + }, + "startTime": "2020-11-18T15:15:54.330148134Z", + "endTime": "2020-11-18T15:15:54.334838661Z", + "duration": "PT0.004690527S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 236, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "resourceHandlerMapping" + } + ] + }, + "startTime": "2020-11-18T15:15:54.334855584Z", + "endTime": "2020-11-18T15:15:54.590526622Z", + "duration": "PT0.255671038S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 237, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "defaultServletHandlerMapping" + } + ] + }, + "startTime": "2020-11-18T15:15:54.590555806Z", + "endTime": "2020-11-18T15:15:54.590818566Z", + "duration": "PT0.00026276S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 238, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "handlerFunctionAdapter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.590825964Z", + "endTime": "2020-11-18T15:15:54.592471370Z", + "duration": "PT0.001645406S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 239, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "mvcUriComponentsContributor" + } + ] + }, + "startTime": "2020-11-18T15:15:54.592481008Z", + "endTime": "2020-11-18T15:15:54.596010413Z", + "duration": "PT0.003529405S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 240, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "httpRequestHandlerAdapter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.596027525Z", + "endTime": "2020-11-18T15:15:54.596640264Z", + "duration": "PT0.000612739S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 241, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "simpleControllerHandlerAdapter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.596654756Z", + "endTime": "2020-11-18T15:15:54.597284896Z", + "duration": "PT0.00063014S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 242, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "handlerExceptionResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.597294921Z", + "endTime": "2020-11-18T15:15:54.604812282Z", + "duration": "PT0.007517361S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 243, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "mvcViewResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.604824178Z", + "endTime": "2020-11-18T15:15:54.608262411Z", + "duration": "PT0.003438233S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 244, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "themeResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.608275754Z", + "endTime": "2020-11-18T15:15:54.609477982Z", + "duration": "PT0.001202228S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 245, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "flashMapManager" + } + ] + }, + "startTime": "2020-11-18T15:15:54.609486304Z", + "endTime": "2020-11-18T15:15:54.611269231Z", + "duration": "PT0.001782927S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 246, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "viewNameTranslator" + } + ] + }, + "startTime": "2020-11-18T15:15:54.611292721Z", + "endTime": "2020-11-18T15:15:54.612876581Z", + "duration": "PT0.00158386S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 247, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "defaultViewResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.612892727Z", + "endTime": "2020-11-18T15:15:54.621112031Z", + "duration": "PT0.008219304S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 250, + "parentId": 249, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.624159316Z", + "endTime": "2020-11-18T15:15:54.624402335Z", + "duration": "PT0.000243019S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 251, + "parentId": 249, + "tags": [ + { + "key": "beanName", + "value": "spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.625100750Z", + "endTime": "2020-11-18T15:15:54.628324124Z", + "duration": "PT0.003223374S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 253, + "parentId": 252, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.629045504Z", + "endTime": "2020-11-18T15:15:54.629327008Z", + "duration": "PT0.000281504S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 255, + "parentId": 254, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.656783482Z", + "endTime": "2020-11-18T15:15:54.660180043Z", + "duration": "PT0.003396561S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 254, + "parentId": 252, + "tags": [ + { + "key": "beanName", + "value": "defaultTemplateResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.656628329Z", + "endTime": "2020-11-18T15:15:54.665096390Z", + "duration": "PT0.008468061S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 257, + "parentId": 256, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect" + } + ] + }, + "startTime": "2020-11-18T15:15:54.666125189Z", + "endTime": "2020-11-18T15:15:54.666494693Z", + "duration": "PT0.000369504S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 256, + "parentId": 252, + "tags": [ + { + "key": "beanName", + "value": "java8TimeDialect" + } + ] + }, + "startTime": "2020-11-18T15:15:54.666025530Z", + "endTime": "2020-11-18T15:15:54.667662213Z", + "duration": "PT0.001636683S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 252, + "parentId": 249, + "tags": [ + { + "key": "beanName", + "value": "templateEngine" + } + ] + }, + "startTime": "2020-11-18T15:15:54.628910895Z", + "endTime": "2020-11-18T15:15:54.670548165Z", + "duration": "PT0.04163727S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 249, + "parentId": 248, + "tags": [ + { + "key": "beanName", + "value": "thymeleafViewResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.624011895Z", + "endTime": "2020-11-18T15:15:54.676641152Z", + "duration": "PT0.052629257S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 248, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "viewResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.621129419Z", + "endTime": "2020-11-18T15:15:54.676822189Z", + "duration": "PT0.05569277S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 258, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.676842391Z", + "endTime": "2020-11-18T15:15:54.677347941Z", + "duration": "PT0.00050555S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 259, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.677368954Z", + "endTime": "2020-11-18T15:15:54.677572851Z", + "duration": "PT0.000203897S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 260, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "applicationAvailability" + } + ] + }, + "startTime": "2020-11-18T15:15:54.677578938Z", + "endTime": "2020-11-18T15:15:54.678787222Z", + "duration": "PT0.001208284S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 261, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.678794446Z", + "endTime": "2020-11-18T15:15:54.680804182Z", + "duration": "PT0.002009736S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 262, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.680813124Z", + "endTime": "2020-11-18T15:15:54.681092020Z", + "duration": "PT0.000278896S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 263, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "beansEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.681098619Z", + "endTime": "2020-11-18T15:15:54.683443688Z", + "duration": "PT0.002345069S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 264, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.683456710Z", + "endTime": "2020-11-18T15:15:54.683965332Z", + "duration": "PT0.000508622S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 265, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari" + } + ] + }, + "startTime": "2020-11-18T15:15:54.683991268Z", + "endTime": "2020-11-18T15:15:54.685692494Z", + "duration": "PT0.001701226S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 266, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.685701203Z", + "endTime": "2020-11-18T15:15:54.685942990Z", + "duration": "PT0.000241787S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 267, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.685947963Z", + "endTime": "2020-11-18T15:15:54.686310975Z", + "duration": "PT0.000363012S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 268, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.686319392Z", + "endTime": "2020-11-18T15:15:54.686557838Z", + "duration": "PT0.000238446S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 269, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceInitializationConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.686563578Z", + "endTime": "2020-11-18T15:15:54.686786372Z", + "duration": "PT0.000222794S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 270, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.686792352Z", + "endTime": "2020-11-18T15:15:54.687047805Z", + "duration": "PT0.000255453S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 273, + "parentId": 272, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.701808143Z", + "endTime": "2020-11-18T15:15:54.702377931Z", + "duration": "PT0.000569788S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 274, + "parentId": 272, + "tags": [ + { + "key": "beanName", + "value": "spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.703401594Z", + "endTime": "2020-11-18T15:15:54.704305713Z", + "duration": "PT0.000904119S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 272, + "parentId": 271, + "tags": [ + { + "key": "beanName", + "value": "platformTransactionManagerCustomizers" + } + ] + }, + "startTime": "2020-11-18T15:15:54.701731104Z", + "endTime": "2020-11-18T15:15:54.704561927Z", + "duration": "PT0.002830823S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 271, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "transactionManager" + } + ] + }, + "startTime": "2020-11-18T15:15:54.687056340Z", + "endTime": "2020-11-18T15:15:54.714281485Z", + "duration": "PT0.027225145S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 275, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.orm.jpa.DataSourceInitializedPublisher$DataSourceInitializationCompletionListener" + } + ] + }, + "startTime": "2020-11-18T15:15:54.714302243Z", + "endTime": "2020-11-18T15:15:54.714511193Z", + "duration": "PT0.00020895S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 276, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.714517570Z", + "endTime": "2020-11-18T15:15:54.714808793Z", + "duration": "PT0.000291223S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 277, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "java.lang.Object" + } + ] + }, + "startTime": "2020-11-18T15:15:54.714818331Z", + "endTime": "2020-11-18T15:15:54.714974106Z", + "duration": "PT0.000155775S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 278, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "cacheAutoConfigurationValidator" + } + ] + }, + "startTime": "2020-11-18T15:15:54.714984809Z", + "endTime": "2020-11-18T15:15:54.716995500Z", + "duration": "PT0.002010691S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 279, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.717007143Z", + "endTime": "2020-11-18T15:15:54.717365823Z", + "duration": "PT0.00035868S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 280, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "cachesEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.717411086Z", + "endTime": "2020-11-18T15:15:54.720579055Z", + "duration": "PT0.003167969S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 281, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "cachesEndpointWebExtension" + } + ] + }, + "startTime": "2020-11-18T15:15:54.720591063Z", + "endTime": "2020-11-18T15:15:54.722298264Z", + "duration": "PT0.001707201S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 282, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.722308553Z", + "endTime": "2020-11-18T15:15:54.722757892Z", + "duration": "PT0.000449339S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 283, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "servletWebChildContextFactory" + } + ] + }, + "startTime": "2020-11-18T15:15:54.722765616Z", + "endTime": "2020-11-18T15:15:54.723349222Z", + "duration": "PT0.000583606S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 284, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "managementServletContext" + } + ] + }, + "startTime": "2020-11-18T15:15:54.723355234Z", + "endTime": "2020-11-18T15:15:54.724521499Z", + "duration": "PT0.001166265S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 285, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.724530045Z", + "endTime": "2020-11-18T15:15:54.724840931Z", + "duration": "PT0.000310886S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 287, + "parentId": 286, + "tags": [ + { + "key": "beanName", + "value": "management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.725358807Z", + "endTime": "2020-11-18T15:15:54.727381523Z", + "duration": "PT0.002022716S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 286, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "healthStatusAggregator" + } + ] + }, + "startTime": "2020-11-18T15:15:54.724847796Z", + "endTime": "2020-11-18T15:15:54.729449638Z", + "duration": "PT0.004601842S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 288, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "healthHttpCodeStatusMapper" + } + ] + }, + "startTime": "2020-11-18T15:15:54.729456508Z", + "endTime": "2020-11-18T15:15:54.730205159Z", + "duration": "PT0.000748651S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 289, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "healthEndpointGroups" + } + ] + }, + "startTime": "2020-11-18T15:15:54.730210610Z", + "endTime": "2020-11-18T15:15:54.734708318Z", + "duration": "PT0.004497708S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 292, + "parentId": 291, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.735786098Z", + "endTime": "2020-11-18T15:15:54.736122343Z", + "duration": "PT0.000336245S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 293, + "parentId": 291, + "tags": [ + { + "key": "beanName", + "value": "management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.736487594Z", + "endTime": "2020-11-18T15:15:54.737241875Z", + "duration": "PT0.000754281S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 291, + "parentId": 290, + "tags": [ + { + "key": "beanName", + "value": "diskSpaceHealthIndicator" + } + ] + }, + "startTime": "2020-11-18T15:15:54.735739828Z", + "endTime": "2020-11-18T15:15:54.739054373Z", + "duration": "PT0.003314545S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 295, + "parentId": 294, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.739103618Z", + "endTime": "2020-11-18T15:15:54.739347962Z", + "duration": "PT0.000244344S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 294, + "parentId": 290, + "tags": [ + { + "key": "beanName", + "value": "pingHealthContributor" + } + ] + }, + "startTime": "2020-11-18T15:15:54.739061432Z", + "endTime": "2020-11-18T15:15:54.739624868Z", + "duration": "PT0.000563436S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 297, + "parentId": 296, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.739651760Z", + "endTime": "2020-11-18T15:15:54.741752391Z", + "duration": "PT0.002100631S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 298, + "parentId": 296, + "tags": [ + { + "key": "beanName", + "value": "management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.742501957Z", + "endTime": "2020-11-18T15:15:54.743338674Z", + "duration": "PT0.000836717S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 296, + "parentId": 290, + "tags": [ + { + "key": "beanName", + "value": "dbHealthContributor" + } + ] + }, + "startTime": "2020-11-18T15:15:54.739629463Z", + "endTime": "2020-11-18T15:15:54.744002797Z", + "duration": "PT0.004373334S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 290, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "healthContributorRegistry" + } + ] + }, + "startTime": "2020-11-18T15:15:54.734717993Z", + "endTime": "2020-11-18T15:15:54.747952874Z", + "duration": "PT0.013234881S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 299, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "healthEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.747962503Z", + "endTime": "2020-11-18T15:15:54.750573591Z", + "duration": "PT0.002611088S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 300, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.health.HealthEndpointWebExtensionConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.750582934Z", + "endTime": "2020-11-18T15:15:54.750837809Z", + "duration": "PT0.000254875S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 301, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "healthEndpointWebExtension" + } + ] + }, + "startTime": "2020-11-18T15:15:54.750844165Z", + "endTime": "2020-11-18T15:15:54.751876738Z", + "duration": "PT0.001032573S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 302, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.751882858Z", + "endTime": "2020-11-18T15:15:54.752097972Z", + "duration": "PT0.000215114S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 304, + "parentId": 303, + "tags": [ + { + "key": "beanName", + "value": "spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.752813090Z", + "endTime": "2020-11-18T15:15:54.753512874Z", + "duration": "PT0.000699784S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 303, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.752103430Z", + "endTime": "2020-11-18T15:15:54.753755486Z", + "duration": "PT0.001652056S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 305, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.753761643Z", + "endTime": "2020-11-18T15:15:54.754225593Z", + "duration": "PT0.00046395S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 306, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "envInfoContributor" + } + ] + }, + "startTime": "2020-11-18T15:15:54.754230839Z", + "endTime": "2020-11-18T15:15:54.755196568Z", + "duration": "PT0.000965729S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 307, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.755201256Z", + "endTime": "2020-11-18T15:15:54.756313598Z", + "duration": "PT0.001112342S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 308, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.756318327Z", + "endTime": "2020-11-18T15:15:54.756572862Z", + "duration": "PT0.000254535S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 309, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "infoEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.756578193Z", + "endTime": "2020-11-18T15:15:54.757591261Z", + "duration": "PT0.001013068S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 310, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.757598778Z", + "endTime": "2020-11-18T15:15:54.757921955Z", + "duration": "PT0.000323177S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 311, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "conditionsReportEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.757928952Z", + "endTime": "2020-11-18T15:15:54.758776937Z", + "duration": "PT0.000847985S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 312, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.758786960Z", + "endTime": "2020-11-18T15:15:54.759164470Z", + "duration": "PT0.00037751S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 314, + "parentId": 313, + "tags": [ + { + "key": "beanName", + "value": "management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.759860920Z", + "endTime": "2020-11-18T15:15:54.760849677Z", + "duration": "PT0.000988757S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 313, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "configurationPropertiesReportEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.759171333Z", + "endTime": "2020-11-18T15:15:54.765177865Z", + "duration": "PT0.006006532S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 315, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.765190709Z", + "endTime": "2020-11-18T15:15:54.765562722Z", + "duration": "PT0.000372013S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 316, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "endpointOperationParameterMapper" + } + ] + }, + "startTime": "2020-11-18T15:15:54.765571684Z", + "endTime": "2020-11-18T15:15:54.768522452Z", + "duration": "PT0.002950768S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 317, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "endpointCachingOperationInvokerAdvisor" + } + ] + }, + "startTime": "2020-11-18T15:15:54.768532301Z", + "endTime": "2020-11-18T15:15:54.769630001Z", + "duration": "PT0.0010977S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 319, + "parentId": 318, + "tags": [ + { + "key": "beanName", + "value": "management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.770223158Z", + "endTime": "2020-11-18T15:15:54.771278184Z", + "duration": "PT0.001055026S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 318, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.769642604Z", + "endTime": "2020-11-18T15:15:54.771612658Z", + "duration": "PT0.001970054S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 321, + "parentId": 320, + "tags": [ + { + "key": "beanName", + "value": "jmxIncludeExcludePropertyEndpointFilter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.773508902Z", + "endTime": "2020-11-18T15:15:54.773868173Z", + "duration": "PT0.000359271S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 320, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "jmxAnnotationEndpointDiscoverer" + } + ] + }, + "startTime": "2020-11-18T15:15:54.771619033Z", + "endTime": "2020-11-18T15:15:54.774753736Z", + "duration": "PT0.003134703S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 324, + "parentId": 323, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.788350307Z", + "endTime": "2020-11-18T15:15:54.788669697Z", + "duration": "PT0.00031939S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 325, + "parentId": 323, + "tags": [ + { + "key": "beanName", + "value": "management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.789241074Z", + "endTime": "2020-11-18T15:15:54.789793236Z", + "duration": "PT0.000552162S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 323, + "parentId": 322, + "tags": [ + { + "key": "beanName", + "value": "environmentEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.788297553Z", + "endTime": "2020-11-18T15:15:54.791736370Z", + "duration": "PT0.003438817S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 327, + "parentId": 326, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.805115588Z", + "endTime": "2020-11-18T15:15:54.805374373Z", + "duration": "PT0.000258785S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 326, + "parentId": 322, + "tags": [ + { + "key": "beanName", + "value": "loggersEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.805065695Z", + "endTime": "2020-11-18T15:15:54.808645974Z", + "duration": "PT0.003580279S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 329, + "parentId": 328, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.809171448Z", + "endTime": "2020-11-18T15:15:54.809357606Z", + "duration": "PT0.000186158S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 328, + "parentId": 322, + "tags": [ + { + "key": "beanName", + "value": "heapDumpWebEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.809131797Z", + "endTime": "2020-11-18T15:15:54.811205092Z", + "duration": "PT0.002073295S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 331, + "parentId": 330, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.811291237Z", + "endTime": "2020-11-18T15:15:54.811482176Z", + "duration": "PT0.000190939S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 330, + "parentId": 322, + "tags": [ + { + "key": "beanName", + "value": "dumpEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.811252985Z", + "endTime": "2020-11-18T15:15:54.812423598Z", + "duration": "PT0.001170613S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 333, + "parentId": 332, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.812944624Z", + "endTime": "2020-11-18T15:15:54.813217724Z", + "duration": "PT0.0002731S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 332, + "parentId": 322, + "tags": [ + { + "key": "beanName", + "value": "metricsEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.812918192Z", + "endTime": "2020-11-18T15:15:54.815318370Z", + "duration": "PT0.002400178S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 335, + "parentId": 334, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.816410163Z", + "endTime": "2020-11-18T15:15:54.816701732Z", + "duration": "PT0.000291569S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 334, + "parentId": 322, + "tags": [ + { + "key": "beanName", + "value": "scheduledTasksEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.816327376Z", + "endTime": "2020-11-18T15:15:54.819579597Z", + "duration": "PT0.003252221S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 337, + "parentId": 336, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.startup.StartupEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.819964562Z", + "endTime": "2020-11-18T15:15:54.820206379Z", + "duration": "PT0.000241817S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 336, + "parentId": 322, + "tags": [ + { + "key": "beanName", + "value": "startupEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.819928818Z", + "endTime": "2020-11-18T15:15:54.821192790Z", + "duration": "PT0.001263972S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 339, + "parentId": 338, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.821385695Z", + "endTime": "2020-11-18T15:15:54.821609221Z", + "duration": "PT0.000223526S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 341, + "parentId": 340, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.822475592Z", + "endTime": "2020-11-18T15:15:54.822721722Z", + "duration": "PT0.00024613S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 340, + "parentId": 338, + "tags": [ + { + "key": "beanName", + "value": "dispatcherServletMappingDescriptionProvider" + } + ] + }, + "startTime": "2020-11-18T15:15:54.822360319Z", + "endTime": "2020-11-18T15:15:54.825398701Z", + "duration": "PT0.003038382S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 343, + "parentId": 342, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.825480818Z", + "endTime": "2020-11-18T15:15:54.825685093Z", + "duration": "PT0.000204275S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 342, + "parentId": 338, + "tags": [ + { + "key": "beanName", + "value": "servletMappingDescriptionProvider" + } + ] + }, + "startTime": "2020-11-18T15:15:54.825424412Z", + "endTime": "2020-11-18T15:15:54.825970207Z", + "duration": "PT0.000545795S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 344, + "parentId": 338, + "tags": [ + { + "key": "beanName", + "value": "filterMappingDescriptionProvider" + } + ] + }, + "startTime": "2020-11-18T15:15:54.825985639Z", + "endTime": "2020-11-18T15:15:54.826270531Z", + "duration": "PT0.000284892S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 338, + "parentId": 322, + "tags": [ + { + "key": "beanName", + "value": "mappingsEndpoint" + } + ] + }, + "startTime": "2020-11-18T15:15:54.821345574Z", + "endTime": "2020-11-18T15:15:54.826994633Z", + "duration": "PT0.005649059S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 322, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "jmxMBeanExporter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.774762697Z", + "endTime": "2020-11-18T15:15:54.836900774Z", + "duration": "PT0.062138077S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 345, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "endpointMediaTypes" + } + ] + }, + "startTime": "2020-11-18T15:15:54.836917755Z", + "endTime": "2020-11-18T15:15:54.837256255Z", + "duration": "PT0.0003385S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 347, + "parentId": 346, + "tags": [ + { + "key": "beanName", + "value": "webExposeExcludePropertyEndpointFilter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.838908270Z", + "endTime": "2020-11-18T15:15:54.839143267Z", + "duration": "PT0.000234997S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 346, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "webEndpointDiscoverer" + } + ] + }, + "startTime": "2020-11-18T15:15:54.837261751Z", + "endTime": "2020-11-18T15:15:54.840391787Z", + "duration": "PT0.003130036S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 349, + "parentId": 348, + "tags": [ + { + "key": "beanName", + "value": "controllerExposeExcludePropertyEndpointFilter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.841167016Z", + "endTime": "2020-11-18T15:15:54.841368993Z", + "duration": "PT0.000201977S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 348, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "controllerEndpointDiscoverer" + } + ] + }, + "startTime": "2020-11-18T15:15:54.840399533Z", + "endTime": "2020-11-18T15:15:54.842075506Z", + "duration": "PT0.001675973S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 351, + "parentId": 350, + "tags": [ + { + "key": "beanName", + "value": "environmentEndpointWebExtension" + } + ] + }, + "startTime": "2020-11-18T15:15:54.857999059Z", + "endTime": "2020-11-18T15:15:54.859284654Z", + "duration": "PT0.001285595S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 350, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "pathMappedEndpoints" + } + ] + }, + "startTime": "2020-11-18T15:15:54.842085080Z", + "endTime": "2020-11-18T15:15:54.870240715Z", + "duration": "PT0.028155635S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 352, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.870265861Z", + "endTime": "2020-11-18T15:15:54.870660172Z", + "duration": "PT0.000394311S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 353, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.870666286Z", + "endTime": "2020-11-18T15:15:54.871205244Z", + "duration": "PT0.000538958S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 354, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.871225883Z", + "endTime": "2020-11-18T15:15:54.871405154Z", + "duration": "PT0.000179271S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 355, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.cache.CacheMeterBinderProvidersConfiguration$JCacheCacheMeterBinderProviderConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.871423113Z", + "endTime": "2020-11-18T15:15:54.871600951Z", + "duration": "PT0.000177838S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 356, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "jCacheCacheMeterBinderProvider" + } + ] + }, + "startTime": "2020-11-18T15:15:54.871604426Z", + "endTime": "2020-11-18T15:15:54.871894504Z", + "duration": "PT0.000290078S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 357, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.cache.CacheMeterBinderProvidersConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.871898236Z", + "endTime": "2020-11-18T15:15:54.872027682Z", + "duration": "PT0.000129446S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 358, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.cache.CacheMetricsRegistrarConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.872031306Z", + "endTime": "2020-11-18T15:15:54.878768949Z", + "duration": "PT0.006737643S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 359, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "cacheMetricsRegistrar" + } + ] + }, + "startTime": "2020-11-18T15:15:54.878775945Z", + "endTime": "2020-11-18T15:15:54.879142990Z", + "duration": "PT0.000367045S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 360, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.cache.CacheMetricsAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.879149003Z", + "endTime": "2020-11-18T15:15:54.879309487Z", + "duration": "PT0.000160484S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 361, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.879313214Z", + "endTime": "2020-11-18T15:15:54.883835199Z", + "duration": "PT0.004521985S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 362, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.883843425Z", + "endTime": "2020-11-18T15:15:54.889035668Z", + "duration": "PT0.005192243S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 363, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.889044709Z", + "endTime": "2020-11-18T15:15:54.889332811Z", + "duration": "PT0.000288102S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 364, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.orm.jpa.HibernateMetricsAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.889338003Z", + "endTime": "2020-11-18T15:15:54.890013919Z", + "duration": "PT0.000675916S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 365, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.890033402Z", + "endTime": "2020-11-18T15:15:54.890167193Z", + "duration": "PT0.000133791S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 366, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.890172349Z", + "endTime": "2020-11-18T15:15:54.890408963Z", + "duration": "PT0.000236614S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 367, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.web.client.RestTemplateMetricsConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.890413979Z", + "endTime": "2020-11-18T15:15:54.890560327Z", + "duration": "PT0.000146348S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 368, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "restTemplateExchangeTagsProvider" + } + ] + }, + "startTime": "2020-11-18T15:15:54.890563834Z", + "endTime": "2020-11-18T15:15:54.891657281Z", + "duration": "PT0.001093447S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 369, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "metricsRestTemplateCustomizer" + } + ] + }, + "startTime": "2020-11-18T15:15:54.891664176Z", + "endTime": "2020-11-18T15:15:54.894004706Z", + "duration": "PT0.00234053S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 370, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.894017172Z", + "endTime": "2020-11-18T15:15:54.894248757Z", + "duration": "PT0.000231585S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 371, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "tomcatMetricsBinder" + } + ] + }, + "startTime": "2020-11-18T15:15:54.894252804Z", + "endTime": "2020-11-18T15:15:54.894744440Z", + "duration": "PT0.000491636S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 372, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.trace.http.HttpTraceEndpointAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.894752277Z", + "endTime": "2020-11-18T15:15:54.895024380Z", + "duration": "PT0.000272103S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 373, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.895035913Z", + "endTime": "2020-11-18T15:15:54.895174378Z", + "duration": "PT0.000138465S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 374, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.895177888Z", + "endTime": "2020-11-18T15:15:54.895297839Z", + "duration": "PT0.000119951S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 375, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.aop.AopAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.895301758Z", + "endTime": "2020-11-18T15:15:54.895420392Z", + "duration": "PT0.000118634S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 376, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.895423813Z", + "endTime": "2020-11-18T15:15:54.895541029Z", + "duration": "PT0.000117216S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 377, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.895544344Z", + "endTime": "2020-11-18T15:15:54.895696562Z", + "duration": "PT0.000152218S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 379, + "parentId": 378, + "tags": [ + { + "key": "beanName", + "value": "spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.896230574Z", + "endTime": "2020-11-18T15:15:54.896729600Z", + "duration": "PT0.000499026S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 378, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "lifecycleProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:54.895700134Z", + "endTime": "2020-11-18T15:15:54.897837738Z", + "duration": "PT0.002137604S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 380, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.897843052Z", + "endTime": "2020-11-18T15:15:54.898032753Z", + "duration": "PT0.000189701S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 381, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.data.jpa.util.JpaMetamodelCacheCleanup" + } + ] + }, + "startTime": "2020-11-18T15:15:54.898040109Z", + "endTime": "2020-11-18T15:15:54.898221407Z", + "duration": "PT0.000181298S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 382, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension" + } + ] + }, + "startTime": "2020-11-18T15:15:54.898225300Z", + "endTime": "2020-11-18T15:15:54.899458155Z", + "duration": "PT0.001232855S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 383, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.data.web.config.ProjectingArgumentResolverRegistrar" + } + ] + }, + "startTime": "2020-11-18T15:15:54.899479002Z", + "endTime": "2020-11-18T15:15:54.899746371Z", + "duration": "PT0.000267369S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 384, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.899769109Z", + "endTime": "2020-11-18T15:15:54.899923735Z", + "duration": "PT0.000154626S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 386, + "parentId": 385, + "tags": [ + { + "key": "beanName", + "value": "spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.900557023Z", + "endTime": "2020-11-18T15:15:54.901082790Z", + "duration": "PT0.000525767S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 385, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "jdbcTemplate" + } + ] + }, + "startTime": "2020-11-18T15:15:54.899927031Z", + "endTime": "2020-11-18T15:15:54.908183812Z", + "duration": "PT0.008256781S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 387, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.908204171Z", + "endTime": "2020-11-18T15:15:54.908420037Z", + "duration": "PT0.000215866S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 388, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "namedParameterJdbcTemplate" + } + ] + }, + "startTime": "2020-11-18T15:15:54.908423936Z", + "endTime": "2020-11-18T15:15:54.913823809Z", + "duration": "PT0.005399873S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 389, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.913831373Z", + "endTime": "2020-11-18T15:15:54.914036067Z", + "duration": "PT0.000204694S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 390, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.914041090Z", + "endTime": "2020-11-18T15:15:54.914801205Z", + "duration": "PT0.000760115S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 392, + "parentId": 391, + "tags": [ + { + "key": "beanName", + "value": "spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.915709663Z", + "endTime": "2020-11-18T15:15:54.916654078Z", + "duration": "PT0.000944415S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 391, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "taskSchedulerBuilder" + } + ] + }, + "startTime": "2020-11-18T15:15:54.914805177Z", + "endTime": "2020-11-18T15:15:54.917859454Z", + "duration": "PT0.003054277S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 393, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.917871285Z", + "endTime": "2020-11-18T15:15:54.918064762Z", + "duration": "PT0.000193477S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 394, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.918068740Z", + "endTime": "2020-11-18T15:15:54.919516585Z", + "duration": "PT0.001447845S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 395, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.919520677Z", + "endTime": "2020-11-18T15:15:54.919665993Z", + "duration": "PT0.000145316S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 396, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.919672604Z", + "endTime": "2020-11-18T15:15:54.919822697Z", + "duration": "PT0.000150093S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 397, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.919825613Z", + "endTime": "2020-11-18T15:15:54.919957104Z", + "duration": "PT0.000131491S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 398, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.919959846Z", + "endTime": "2020-11-18T15:15:54.920127475Z", + "duration": "PT0.000167629S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 399, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "transactionTemplate" + } + ] + }, + "startTime": "2020-11-18T15:15:54.920130894Z", + "endTime": "2020-11-18T15:15:54.922000836Z", + "duration": "PT0.001869942S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 400, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.922008660Z", + "endTime": "2020-11-18T15:15:54.922180061Z", + "duration": "PT0.000171401S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 401, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "multipartResolver" + } + ] + }, + "startTime": "2020-11-18T15:15:54.922187052Z", + "endTime": "2020-11-18T15:15:54.923205763Z", + "duration": "PT0.001018711S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 402, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.devtools.autoconfigure.LocalDevToolsAutoConfiguration$RestartConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.923214424Z", + "endTime": "2020-11-18T15:15:54.923954810Z", + "duration": "PT0.000740386S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 404, + "parentId": 403, + "tags": [ + { + "key": "beanName", + "value": "fileSystemWatcherFactory" + } + ] + }, + "startTime": "2020-11-18T15:15:54.924335806Z", + "endTime": "2020-11-18T15:15:54.924808144Z", + "duration": "PT0.000472338S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 403, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "restartingClassPathChangedEventListener" + } + ] + }, + "startTime": "2020-11-18T15:15:54.923958402Z", + "endTime": "2020-11-18T15:15:54.925418350Z", + "duration": "PT0.001459948S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 406, + "parentId": 405, + "tags": [ + { + "key": "beanName", + "value": "classPathRestartStrategy" + } + ] + }, + "startTime": "2020-11-18T15:15:54.925808125Z", + "endTime": "2020-11-18T15:15:54.927149136Z", + "duration": "PT0.001341011S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 405, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "classPathFileSystemWatcher" + } + ] + }, + "startTime": "2020-11-18T15:15:54.925421622Z", + "endTime": "2020-11-18T15:15:54.938267064Z", + "duration": "PT0.012845442S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 407, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "conditionEvaluationDeltaLoggingListener" + } + ] + }, + "startTime": "2020-11-18T15:15:54.938326854Z", + "endTime": "2020-11-18T15:15:54.938847197Z", + "duration": "PT0.000520343S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 408, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.devtools.autoconfigure.LocalDevToolsAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.938892457Z", + "endTime": "2020-11-18T15:15:54.939089460Z", + "duration": "PT0.000197003S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 409, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.939096954Z", + "endTime": "2020-11-18T15:15:54.939358604Z", + "duration": "PT0.00026165S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 411, + "parentId": 410, + "tags": [ + { + "key": "beanName", + "value": "management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.940572838Z", + "endTime": "2020-11-18T15:15:54.942569177Z", + "duration": "PT0.001996339S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 410, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "webEndpointServletHandlerMapping" + } + ] + }, + "startTime": "2020-11-18T15:15:54.939361072Z", + "endTime": "2020-11-18T15:15:54.953124550Z", + "duration": "PT0.013763478S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 412, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "controllerEndpointHandlerMapping" + } + ] + }, + "startTime": "2020-11-18T15:15:54.953133902Z", + "endTime": "2020-11-18T15:15:54.958044778Z", + "duration": "PT0.004910876S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 413, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.958052831Z", + "endTime": "2020-11-18T15:15:54.958370360Z", + "duration": "PT0.000317529S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 414, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.958374040Z", + "endTime": "2020-11-18T15:15:54.959721710Z", + "duration": "PT0.00134767S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 415, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration" + } + ] + }, + "startTime": "2020-11-18T15:15:54.959752445Z", + "endTime": "2020-11-18T15:15:54.960092845Z", + "duration": "PT0.0003404S" + }, + { + "startupStep": { + "name": "spring.beans.instantiate", + "id": 416, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties" + } + ] + }, + "startTime": "2020-11-18T15:15:54.960096183Z", + "endTime": "2020-11-18T15:15:54.961425265Z", + "duration": "PT0.001329082S" + }, + { + "startupStep": { + "name": "spring.beans.smart-initialize", + "id": 417, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "org.springframework.context.event.internalEventListenerProcessor" + } + ] + }, + "startTime": "2020-11-18T15:15:54.961472910Z", + "endTime": "2020-11-18T15:15:54.972012676Z", + "duration": "PT0.010539766S" + }, + { + "startupStep": { + "name": "spring.beans.smart-initialize", + "id": 418, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "cacheInterceptor" + } + ] + }, + "startTime": "2020-11-18T15:15:54.972024897Z", + "endTime": "2020-11-18T15:15:54.973031720Z", + "duration": "PT0.001006823S" + }, + { + "startupStep": { + "name": "spring.beans.smart-initialize", + "id": 419, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "jCacheOperationSource" + } + ] + }, + "startTime": "2020-11-18T15:15:54.973035688Z", + "endTime": "2020-11-18T15:15:54.973064540Z", + "duration": "PT0.000028852S" + }, + { + "startupStep": { + "name": "spring.beans.smart-initialize", + "id": 420, + "parentId": 5, + "tags": [ + { + "key": "beanName", + "value": "mbeanExporter" + } + ] + }, + "startTime": "2020-11-18T15:15:54.973130508Z", + "endTime": "2020-11-18T15:15:54.980306670Z", + "duration": "PT0.007176162S" + } + ] + } +} \ No newline at end of file