Thread Dump (threaddump)

The threaddump endpoint provides a thread dump from the application’s JVM.

Retrieving the Thread Dump as JSON

To retrieve the thread dump as JSON, make a GET request to /actuator/threaddump with an appropriate Accept header, as shown in the following curl-based example:

$ curl 'http://localhost:8080/actuator/threaddump' -i -X GET \
    -H 'Accept: application/json'

The resulting response is similar to the following:

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 38916

{
  "threads" : [ {
    "threadName" : "Test worker",
    "threadId" : 1,
    "blockedTime" : -1,
    "blockedCount" : 38,
    "waitedTime" : -1,
    "waitedCount" : 40,
    "lockOwnerId" : -1,
    "daemon" : false,
    "inNative" : false,
    "suspended" : false,
    "threadState" : "RUNNABLE",
    "priority" : 5,
    "stackTrace" : [ {
      "moduleName" : "java.management",
      "moduleVersion" : "17.0.11",
      "methodName" : "dumpThreads0",
      "fileName" : "ThreadImpl.java",
      "lineNumber" : -2,
      "nativeMethod" : true,
      "className" : "sun.management.ThreadImpl"
    }, {
      "moduleName" : "java.management",
      "moduleVersion" : "17.0.11",
      "methodName" : "dumpAllThreads",
      "fileName" : "ThreadImpl.java",
      "lineNumber" : 528,
      "nativeMethod" : false,
      "className" : "sun.management.ThreadImpl"
    }, {
      "moduleName" : "java.management",
      "moduleVersion" : "17.0.11",
      "methodName" : "dumpAllThreads",
      "fileName" : "ThreadImpl.java",
      "lineNumber" : 516,
      "nativeMethod" : false,
      "className" : "sun.management.ThreadImpl"
    }, {
      "classLoaderName" : "app",
      "methodName" : "getFormattedThreadDump",
      "fileName" : "ThreadDumpEndpoint.java",
      "lineNumber" : 52,
      "nativeMethod" : false,
      "className" : "org.springframework.boot.actuate.management.ThreadDumpEndpoint"
    }, {
      "classLoaderName" : "app",
      "methodName" : "threadDump",
      "fileName" : "ThreadDumpEndpoint.java",
      "lineNumber" : 43,
      "nativeMethod" : false,
      "className" : "org.springframework.boot.actuate.management.ThreadDumpEndpoint"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke0",
      "fileName" : "NativeMethodAccessorImpl.java",
      "lineNumber" : -2,
      "nativeMethod" : true,
      "className" : "jdk.internal.reflect.NativeMethodAccessorImpl"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke",
      "fileName" : "NativeMethodAccessorImpl.java",
      "lineNumber" : 77,
      "nativeMethod" : false,
      "className" : "jdk.internal.reflect.NativeMethodAccessorImpl"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke",
      "fileName" : "DelegatingMethodAccessorImpl.java",
      "lineNumber" : 43,
      "nativeMethod" : false,
      "className" : "jdk.internal.reflect.DelegatingMethodAccessorImpl"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke",
      "fileName" : "Method.java",
      "lineNumber" : 568,
      "nativeMethod" : false,
      "className" : "java.lang.reflect.Method"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invokeMethod",
      "fileName" : "ReflectionUtils.java",
      "lineNumber" : 281,
      "nativeMethod" : false,
      "className" : "org.springframework.util.ReflectionUtils"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invoke",
      "fileName" : "ReflectiveOperationInvoker.java",
      "lineNumber" : 74,
      "nativeMethod" : false,
      "className" : "org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invoke",
      "fileName" : "AbstractDiscoveredOperation.java",
      "lineNumber" : 60,
      "nativeMethod" : false,
      "className" : "org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation"
    }, {
      "classLoaderName" : "app",
      "methodName" : "handle",
      "fileName" : "AbstractWebMvcEndpointHandlerMapping.java",
      "lineNumber" : 327,
      "nativeMethod" : false,
      "className" : "org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter"
    }, {
      "classLoaderName" : "app",
      "methodName" : "handle",
      "fileName" : "AbstractWebMvcEndpointHandlerMapping.java",
      "lineNumber" : 434,
      "nativeMethod" : false,
      "className" : "org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler"
    }, {
      "methodName" : "invoke",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "jdk.internal.reflect.GeneratedMethodAccessor64"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke",
      "fileName" : "DelegatingMethodAccessorImpl.java",
      "lineNumber" : 43,
      "nativeMethod" : false,
      "className" : "jdk.internal.reflect.DelegatingMethodAccessorImpl"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke",
      "fileName" : "Method.java",
      "lineNumber" : 568,
      "nativeMethod" : false,
      "className" : "java.lang.reflect.Method"
    }, {
      "classLoaderName" : "app",
      "methodName" : "doInvoke",
      "fileName" : "InvocableHandlerMethod.java",
      "lineNumber" : 255,
      "nativeMethod" : false,
      "className" : "org.springframework.web.method.support.InvocableHandlerMethod"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invokeForRequest",
      "fileName" : "InvocableHandlerMethod.java",
      "lineNumber" : 188,
      "nativeMethod" : false,
      "className" : "org.springframework.web.method.support.InvocableHandlerMethod"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invokeAndHandle",
      "fileName" : "ServletInvocableHandlerMethod.java",
      "lineNumber" : 118,
      "nativeMethod" : false,
      "className" : "org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invokeHandlerMethod",
      "fileName" : "RequestMappingHandlerAdapter.java",
      "lineNumber" : 926,
      "nativeMethod" : false,
      "className" : "org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"
    }, {
      "classLoaderName" : "app",
      "methodName" : "handleInternal",
      "fileName" : "RequestMappingHandlerAdapter.java",
      "lineNumber" : 831,
      "nativeMethod" : false,
      "className" : "org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"
    }, {
      "classLoaderName" : "app",
      "methodName" : "handle",
      "fileName" : "AbstractHandlerMethodAdapter.java",
      "lineNumber" : 87,
      "nativeMethod" : false,
      "className" : "org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter"
    }, {
      "classLoaderName" : "app",
      "methodName" : "doDispatch",
      "fileName" : "DispatcherServlet.java",
      "lineNumber" : 1089,
      "nativeMethod" : false,
      "className" : "org.springframework.web.servlet.DispatcherServlet"
    }, {
      "classLoaderName" : "app",
      "methodName" : "doService",
      "fileName" : "DispatcherServlet.java",
      "lineNumber" : 979,
      "nativeMethod" : false,
      "className" : "org.springframework.web.servlet.DispatcherServlet"
    }, {
      "classLoaderName" : "app",
      "methodName" : "processRequest",
      "fileName" : "FrameworkServlet.java",
      "lineNumber" : 1014,
      "nativeMethod" : false,
      "className" : "org.springframework.web.servlet.FrameworkServlet"
    }, {
      "classLoaderName" : "app",
      "methodName" : "doGet",
      "fileName" : "FrameworkServlet.java",
      "lineNumber" : 903,
      "nativeMethod" : false,
      "className" : "org.springframework.web.servlet.FrameworkServlet"
    }, {
      "classLoaderName" : "app",
      "methodName" : "service",
      "fileName" : "HttpServlet.java",
      "lineNumber" : 527,
      "nativeMethod" : false,
      "className" : "jakarta.servlet.http.HttpServlet"
    }, {
      "classLoaderName" : "app",
      "methodName" : "service",
      "fileName" : "FrameworkServlet.java",
      "lineNumber" : 885,
      "nativeMethod" : false,
      "className" : "org.springframework.web.servlet.FrameworkServlet"
    }, {
      "classLoaderName" : "app",
      "methodName" : "service",
      "fileName" : "TestDispatcherServlet.java",
      "lineNumber" : 72,
      "nativeMethod" : false,
      "className" : "org.springframework.test.web.servlet.TestDispatcherServlet"
    }, {
      "classLoaderName" : "app",
      "methodName" : "service",
      "fileName" : "HttpServlet.java",
      "lineNumber" : 614,
      "nativeMethod" : false,
      "className" : "jakarta.servlet.http.HttpServlet"
    }, {
      "classLoaderName" : "app",
      "methodName" : "doFilter",
      "fileName" : "MockFilterChain.java",
      "lineNumber" : 165,
      "nativeMethod" : false,
      "className" : "org.springframework.mock.web.MockFilterChain$ServletFilterProxy"
    }, {
      "classLoaderName" : "app",
      "methodName" : "doFilter",
      "fileName" : "MockFilterChain.java",
      "lineNumber" : 132,
      "nativeMethod" : false,
      "className" : "org.springframework.mock.web.MockFilterChain"
    }, {
      "classLoaderName" : "app",
      "methodName" : "perform",
      "fileName" : "MockMvc.java",
      "lineNumber" : 201,
      "nativeMethod" : false,
      "className" : "org.springframework.test.web.servlet.MockMvc"
    }, {
      "classLoaderName" : "app",
      "methodName" : "jsonThreadDump",
      "fileName" : "ThreadDumpEndpointDocumentationTests.java",
      "lineNumber" : 66,
      "nativeMethod" : false,
      "className" : "org.springframework.boot.actuate.autoconfigure.endpoint.web.documentation.ThreadDumpEndpointDocumentationTests"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke0",
      "fileName" : "NativeMethodAccessorImpl.java",
      "lineNumber" : -2,
      "nativeMethod" : true,
      "className" : "jdk.internal.reflect.NativeMethodAccessorImpl"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke",
      "fileName" : "NativeMethodAccessorImpl.java",
      "lineNumber" : 77,
      "nativeMethod" : false,
      "className" : "jdk.internal.reflect.NativeMethodAccessorImpl"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke",
      "fileName" : "DelegatingMethodAccessorImpl.java",
      "lineNumber" : 43,
      "nativeMethod" : false,
      "className" : "jdk.internal.reflect.DelegatingMethodAccessorImpl"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke",
      "fileName" : "Method.java",
      "lineNumber" : 568,
      "nativeMethod" : false,
      "className" : "java.lang.reflect.Method"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invokeMethod",
      "fileName" : "ReflectionUtils.java",
      "lineNumber" : 728,
      "nativeMethod" : false,
      "className" : "org.junit.platform.commons.util.ReflectionUtils"
    }, {
      "classLoaderName" : "app",
      "methodName" : "proceed",
      "fileName" : "MethodInvocation.java",
      "lineNumber" : 60,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.MethodInvocation"
    }, {
      "classLoaderName" : "app",
      "methodName" : "proceed",
      "fileName" : "InvocationInterceptorChain.java",
      "lineNumber" : 131,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation"
    }, {
      "classLoaderName" : "app",
      "methodName" : "intercept",
      "fileName" : "TimeoutExtension.java",
      "lineNumber" : 156,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.extension.TimeoutExtension"
    }, {
      "classLoaderName" : "app",
      "methodName" : "interceptTestableMethod",
      "fileName" : "TimeoutExtension.java",
      "lineNumber" : 147,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.extension.TimeoutExtension"
    }, {
      "classLoaderName" : "app",
      "methodName" : "interceptTestMethod",
      "fileName" : "TimeoutExtension.java",
      "lineNumber" : 86,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.extension.TimeoutExtension"
    }, {
      "classLoaderName" : "app",
      "methodName" : "apply",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$204/0x00007f7540136068"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$ofVoidMethod$0",
      "fileName" : "InterceptingExecutableInvoker.java",
      "lineNumber" : 103,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall"
    }, {
      "classLoaderName" : "app",
      "methodName" : "apply",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$205/0x00007f7540136488"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$invoke$0",
      "fileName" : "InterceptingExecutableInvoker.java",
      "lineNumber" : 93,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.InterceptingExecutableInvoker"
    }, {
      "classLoaderName" : "app",
      "methodName" : "apply",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$489/0x00007f75401e6680"
    }, {
      "classLoaderName" : "app",
      "methodName" : "proceed",
      "fileName" : "InvocationInterceptorChain.java",
      "lineNumber" : 106,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation"
    }, {
      "classLoaderName" : "app",
      "methodName" : "proceed",
      "fileName" : "InvocationInterceptorChain.java",
      "lineNumber" : 64,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.InvocationInterceptorChain"
    }, {
      "classLoaderName" : "app",
      "methodName" : "chainAndInvoke",
      "fileName" : "InvocationInterceptorChain.java",
      "lineNumber" : 45,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.InvocationInterceptorChain"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invoke",
      "fileName" : "InvocationInterceptorChain.java",
      "lineNumber" : 37,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.InvocationInterceptorChain"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invoke",
      "fileName" : "InterceptingExecutableInvoker.java",
      "lineNumber" : 92,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.InterceptingExecutableInvoker"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invoke",
      "fileName" : "InterceptingExecutableInvoker.java",
      "lineNumber" : 86,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.execution.InterceptingExecutableInvoker"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$invokeTestMethod$7",
      "fileName" : "TestMethodTestDescriptor.java",
      "lineNumber" : 218,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$1031/0x00007f75405ee038"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "ThrowableCollector.java",
      "lineNumber" : 73,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.ThrowableCollector"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invokeTestMethod",
      "fileName" : "TestMethodTestDescriptor.java",
      "lineNumber" : 214,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "TestMethodTestDescriptor.java",
      "lineNumber" : 139,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "TestMethodTestDescriptor.java",
      "lineNumber" : 69,
      "nativeMethod" : false,
      "className" : "org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$executeRecursively$6",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 151,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$306/0x00007f7540156428"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "ThrowableCollector.java",
      "lineNumber" : 73,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.ThrowableCollector"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$executeRecursively$8",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 141,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invoke",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$305/0x00007f7540156200"
    }, {
      "classLoaderName" : "app",
      "methodName" : "around",
      "fileName" : "Node.java",
      "lineNumber" : 137,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.Node"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$executeRecursively$9",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 139,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$304/0x00007f7540153c98"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "ThrowableCollector.java",
      "lineNumber" : 73,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.ThrowableCollector"
    }, {
      "classLoaderName" : "app",
      "methodName" : "executeRecursively",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 138,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 95,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "accept",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$310/0x00007f7540156f40"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "forEach",
      "fileName" : "ArrayList.java",
      "lineNumber" : 1511,
      "nativeMethod" : false,
      "className" : "java.util.ArrayList"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invokeAll",
      "fileName" : "SameThreadHierarchicalTestExecutorService.java",
      "lineNumber" : 41,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$executeRecursively$6",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 155,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$306/0x00007f7540156428"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "ThrowableCollector.java",
      "lineNumber" : 73,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.ThrowableCollector"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$executeRecursively$8",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 141,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invoke",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$305/0x00007f7540156200"
    }, {
      "classLoaderName" : "app",
      "methodName" : "around",
      "fileName" : "Node.java",
      "lineNumber" : 137,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.Node"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$executeRecursively$9",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 139,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$304/0x00007f7540153c98"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "ThrowableCollector.java",
      "lineNumber" : 73,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.ThrowableCollector"
    }, {
      "classLoaderName" : "app",
      "methodName" : "executeRecursively",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 138,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 95,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "accept",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$310/0x00007f7540156f40"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "forEach",
      "fileName" : "ArrayList.java",
      "lineNumber" : 1511,
      "nativeMethod" : false,
      "className" : "java.util.ArrayList"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invokeAll",
      "fileName" : "SameThreadHierarchicalTestExecutorService.java",
      "lineNumber" : 41,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$executeRecursively$6",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 155,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$306/0x00007f7540156428"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "ThrowableCollector.java",
      "lineNumber" : 73,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.ThrowableCollector"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$executeRecursively$8",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 141,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "invoke",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$305/0x00007f7540156200"
    }, {
      "classLoaderName" : "app",
      "methodName" : "around",
      "fileName" : "Node.java",
      "lineNumber" : 137,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.Node"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$executeRecursively$9",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 139,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$304/0x00007f7540153c98"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "ThrowableCollector.java",
      "lineNumber" : 73,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.ThrowableCollector"
    }, {
      "classLoaderName" : "app",
      "methodName" : "executeRecursively",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 138,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "NodeTestTask.java",
      "lineNumber" : 95,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.NodeTestTask"
    }, {
      "classLoaderName" : "app",
      "methodName" : "submit",
      "fileName" : "SameThreadHierarchicalTestExecutorService.java",
      "lineNumber" : 35,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "HierarchicalTestExecutor.java",
      "lineNumber" : 57,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "HierarchicalTestEngine.java",
      "lineNumber" : 54,
      "nativeMethod" : false,
      "className" : "org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "EngineExecutionOrchestrator.java",
      "lineNumber" : 198,
      "nativeMethod" : false,
      "className" : "org.junit.platform.launcher.core.EngineExecutionOrchestrator"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "EngineExecutionOrchestrator.java",
      "lineNumber" : 169,
      "nativeMethod" : false,
      "className" : "org.junit.platform.launcher.core.EngineExecutionOrchestrator"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "EngineExecutionOrchestrator.java",
      "lineNumber" : 93,
      "nativeMethod" : false,
      "className" : "org.junit.platform.launcher.core.EngineExecutionOrchestrator"
    }, {
      "classLoaderName" : "app",
      "methodName" : "lambda$execute$0",
      "fileName" : "EngineExecutionOrchestrator.java",
      "lineNumber" : 58,
      "nativeMethod" : false,
      "className" : "org.junit.platform.launcher.core.EngineExecutionOrchestrator"
    }, {
      "classLoaderName" : "app",
      "methodName" : "accept",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$259/0x00007f7540141180"
    }, {
      "classLoaderName" : "app",
      "methodName" : "withInterceptedStreams",
      "fileName" : "EngineExecutionOrchestrator.java",
      "lineNumber" : 141,
      "nativeMethod" : false,
      "className" : "org.junit.platform.launcher.core.EngineExecutionOrchestrator"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "EngineExecutionOrchestrator.java",
      "lineNumber" : 57,
      "nativeMethod" : false,
      "className" : "org.junit.platform.launcher.core.EngineExecutionOrchestrator"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "DefaultLauncher.java",
      "lineNumber" : 103,
      "nativeMethod" : false,
      "className" : "org.junit.platform.launcher.core.DefaultLauncher"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "DefaultLauncher.java",
      "lineNumber" : 85,
      "nativeMethod" : false,
      "className" : "org.junit.platform.launcher.core.DefaultLauncher"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "DelegatingLauncher.java",
      "lineNumber" : 47,
      "nativeMethod" : false,
      "className" : "org.junit.platform.launcher.core.DelegatingLauncher"
    }, {
      "classLoaderName" : "app",
      "methodName" : "execute",
      "fileName" : "SessionPerRequestLauncher.java",
      "lineNumber" : 63,
      "nativeMethod" : false,
      "className" : "org.junit.platform.launcher.core.SessionPerRequestLauncher"
    }, {
      "methodName" : "processAllTestClasses",
      "fileName" : "JUnitPlatformTestClassProcessor.java",
      "lineNumber" : 99,
      "nativeMethod" : false,
      "className" : "org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor"
    }, {
      "methodName" : "access$000",
      "fileName" : "JUnitPlatformTestClassProcessor.java",
      "lineNumber" : 79,
      "nativeMethod" : false,
      "className" : "org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor"
    }, {
      "methodName" : "stop",
      "fileName" : "JUnitPlatformTestClassProcessor.java",
      "lineNumber" : 75,
      "nativeMethod" : false,
      "className" : "org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor"
    }, {
      "methodName" : "stop",
      "fileName" : "SuiteTestClassProcessor.java",
      "lineNumber" : 62,
      "nativeMethod" : false,
      "className" : "org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke0",
      "fileName" : "NativeMethodAccessorImpl.java",
      "lineNumber" : -2,
      "nativeMethod" : true,
      "className" : "jdk.internal.reflect.NativeMethodAccessorImpl"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke",
      "fileName" : "NativeMethodAccessorImpl.java",
      "lineNumber" : 77,
      "nativeMethod" : false,
      "className" : "jdk.internal.reflect.NativeMethodAccessorImpl"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke",
      "fileName" : "DelegatingMethodAccessorImpl.java",
      "lineNumber" : 43,
      "nativeMethod" : false,
      "className" : "jdk.internal.reflect.DelegatingMethodAccessorImpl"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "invoke",
      "fileName" : "Method.java",
      "lineNumber" : 568,
      "nativeMethod" : false,
      "className" : "java.lang.reflect.Method"
    }, {
      "methodName" : "dispatch",
      "fileName" : "ReflectionDispatch.java",
      "lineNumber" : 36,
      "nativeMethod" : false,
      "className" : "org.gradle.internal.dispatch.ReflectionDispatch"
    }, {
      "methodName" : "dispatch",
      "fileName" : "ReflectionDispatch.java",
      "lineNumber" : 24,
      "nativeMethod" : false,
      "className" : "org.gradle.internal.dispatch.ReflectionDispatch"
    }, {
      "methodName" : "dispatch",
      "fileName" : "ContextClassLoaderDispatch.java",
      "lineNumber" : 33,
      "nativeMethod" : false,
      "className" : "org.gradle.internal.dispatch.ContextClassLoaderDispatch"
    }, {
      "methodName" : "invoke",
      "fileName" : "ProxyDispatchAdapter.java",
      "lineNumber" : 94,
      "nativeMethod" : false,
      "className" : "org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler"
    }, {
      "moduleName" : "jdk.proxy1",
      "methodName" : "stop",
      "lineNumber" : -1,
      "nativeMethod" : false,
      "className" : "jdk.proxy1.$Proxy2"
    }, {
      "methodName" : "run",
      "fileName" : "TestWorker.java",
      "lineNumber" : 193,
      "nativeMethod" : false,
      "className" : "org.gradle.api.internal.tasks.testing.worker.TestWorker$3"
    }, {
      "methodName" : "executeAndMaintainThreadName",
      "fileName" : "TestWorker.java",
      "lineNumber" : 129,
      "nativeMethod" : false,
      "className" : "org.gradle.api.internal.tasks.testing.worker.TestWorker"
    }, {
      "methodName" : "execute",
      "fileName" : "TestWorker.java",
      "lineNumber" : 100,
      "nativeMethod" : false,
      "className" : "org.gradle.api.internal.tasks.testing.worker.TestWorker"
    }, {
      "methodName" : "execute",
      "fileName" : "TestWorker.java",
      "lineNumber" : 60,
      "nativeMethod" : false,
      "className" : "org.gradle.api.internal.tasks.testing.worker.TestWorker"
    }, {
      "methodName" : "execute",
      "fileName" : "ActionExecutionWorker.java",
      "lineNumber" : 56,
      "nativeMethod" : false,
      "className" : "org.gradle.process.internal.worker.child.ActionExecutionWorker"
    }, {
      "methodName" : "call",
      "fileName" : "SystemApplicationClassLoaderWorker.java",
      "lineNumber" : 113,
      "nativeMethod" : false,
      "className" : "org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker"
    }, {
      "methodName" : "call",
      "fileName" : "SystemApplicationClassLoaderWorker.java",
      "lineNumber" : 65,
      "nativeMethod" : false,
      "className" : "org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker"
    }, {
      "classLoaderName" : "app",
      "methodName" : "run",
      "fileName" : "GradleWorkerMain.java",
      "lineNumber" : 69,
      "nativeMethod" : false,
      "className" : "worker.org.gradle.process.internal.worker.GradleWorkerMain"
    }, {
      "classLoaderName" : "app",
      "methodName" : "main",
      "fileName" : "GradleWorkerMain.java",
      "lineNumber" : 74,
      "nativeMethod" : false,
      "className" : "worker.org.gradle.process.internal.worker.GradleWorkerMain"
    } ],
    "lockedMonitors" : [ ],
    "lockedSynchronizers" : [ ]
  }, {
    "threadName" : "Reference Handler",
    "threadId" : 2,
    "blockedTime" : -1,
    "blockedCount" : 5,
    "waitedTime" : -1,
    "waitedCount" : 0,
    "lockOwnerId" : -1,
    "daemon" : true,
    "inNative" : false,
    "suspended" : false,
    "threadState" : "RUNNABLE",
    "priority" : 10,
    "stackTrace" : [ {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "waitForReferencePendingList",
      "fileName" : "Reference.java",
      "lineNumber" : -2,
      "nativeMethod" : true,
      "className" : "java.lang.ref.Reference"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "processPendingReferences",
      "fileName" : "Reference.java",
      "lineNumber" : 253,
      "nativeMethod" : false,
      "className" : "java.lang.ref.Reference"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "run",
      "fileName" : "Reference.java",
      "lineNumber" : 215,
      "nativeMethod" : false,
      "className" : "java.lang.ref.Reference$ReferenceHandler"
    } ],
    "lockedMonitors" : [ ],
    "lockedSynchronizers" : [ ]
  }, {
    "threadName" : "Finalizer",
    "threadId" : 3,
    "blockedTime" : -1,
    "blockedCount" : 0,
    "waitedTime" : -1,
    "waitedCount" : 1,
    "lockName" : "java.lang.ref.ReferenceQueue$Lock@2eb8e649",
    "lockOwnerId" : -1,
    "daemon" : true,
    "inNative" : false,
    "suspended" : false,
    "threadState" : "WAITING",
    "priority" : 8,
    "stackTrace" : [ {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "wait",
      "lineNumber" : -2,
      "nativeMethod" : true,
      "className" : "java.lang.Object"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "remove",
      "fileName" : "ReferenceQueue.java",
      "lineNumber" : 155,
      "nativeMethod" : false,
      "className" : "java.lang.ref.ReferenceQueue"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "remove",
      "fileName" : "ReferenceQueue.java",
      "lineNumber" : 176,
      "nativeMethod" : false,
      "className" : "java.lang.ref.ReferenceQueue"
    }, {
      "moduleName" : "java.base",
      "moduleVersion" : "17.0.11",
      "methodName" : "run",
      "fileName" : "Finalizer.java",
      "lineNumber" : 172,
      "nativeMethod" : false,
      "className" : "java.lang.ref.Finalizer$FinalizerThread"
    } ],
    "lockedMonitors" : [ ],
    "lockedSynchronizers" : [ ],
    "lockInfo" : {
      "className" : "java.lang.ref.ReferenceQueue$Lock",
      "identityHashCode" : 783869513
    }
  } ]
}

Response Structure

The response contains details of the JVM’s threads. The following table describes the structure of the response:

Path Type Description

threads

Array

JVM’s threads.

threads.[].blockedCount

Number

Total number of times that the thread has been blocked.

threads.[].blockedTime

Number

Time in milliseconds that the thread has spent blocked. -1 if thread contention monitoring is disabled.

threads.[].daemon

Boolean

Whether the thread is a daemon thread. Only available on Java 9 or later.

threads.[].inNative

Boolean

Whether the thread is executing native code.

threads.[].lockName

String

Description of the object on which the thread is blocked, if any.

threads.[].lockInfo

Object

Object for which the thread is blocked waiting.

threads.[].lockInfo.className

String

Fully qualified class name of the lock object.

threads.[].lockInfo.identityHashCode

Number

Identity hash code of the lock object.

threads.[].lockedMonitors

Array

Monitors locked by this thread, if any

threads.[].lockedMonitors.[].className

String

Class name of the lock object.

threads.[].lockedMonitors.[].identityHashCode

Number

Identity hash code of the lock object.

threads.[].lockedMonitors.[].lockedStackDepth

Number

Stack depth where the monitor was locked.

threads.[].lockedMonitors.[].lockedStackFrame

Object

Stack frame that locked the monitor.

threads.[].lockedSynchronizers

Array

Synchronizers locked by this thread.

threads.[].lockedSynchronizers.[].className

String

Class name of the locked synchronizer.

threads.[].lockedSynchronizers.[].identityHashCode

Number

Identity hash code of the locked synchronizer.

threads.[].lockOwnerId

Number

ID of the thread that owns the object on which the thread is blocked. -1 if the thread is not blocked.

threads.[].lockOwnerName

String

Name of the thread that owns the object on which the thread is blocked, if any.

threads.[].priority

Number

Priority of the thread. Only available on Java 9 or later.

threads.[].stackTrace

Array

Stack trace of the thread.

threads.[].stackTrace.[].classLoaderName

String

Name of the class loader of the class that contains the execution point identified by this entry, if any. Only available on Java 9 or later.

threads.[].stackTrace.[].className

String

Name of the class that contains the execution point identified by this entry.

threads.[].stackTrace.[].fileName

String

Name of the source file that contains the execution point identified by this entry, if any.

threads.[].stackTrace.[].lineNumber

Number

Line number of the execution point identified by this entry. Negative if unknown.

threads.[].stackTrace.[].methodName

String

Name of the method.

threads.[].stackTrace.[].moduleName

String

Name of the module that contains the execution point identified by this entry, if any. Only available on Java 9 or later.

threads.[].stackTrace.[].moduleVersion

String

Version of the module that contains the execution point identified by this entry, if any. Only available on Java 9 or later.

threads.[].stackTrace.[].nativeMethod

Boolean

Whether the execution point is a native method.

threads.[].suspended

Boolean

Whether the thread is suspended.

threads.[].threadId

Number

ID of the thread.

threads.[].threadName

String

Name of the thread.

threads.[].threadState

String

State of the thread (NEW, RUNNABLE, BLOCKED, WAITING, TIMED_WAITING, TERMINATED).

threads.[].waitedCount

Number

Total number of times that the thread has waited for notification.

threads.[].waitedTime

Number

Time in milliseconds that the thread has spent waiting. -1 if thread contention monitoring is disabled

Retrieving the Thread Dump as Text

To retrieve the thread dump as text, make a GET request to /actuator/threaddump that accepts text/plain, as shown in the following curl-based example:

$ curl 'http://localhost:8080/actuator/threaddump' -i -X GET \
    -H 'Accept: text/plain'

The resulting response is similar to the following:

HTTP/1.1 200 OK
Content-Type: text/plain;charset=UTF-8
Content-Length: 56239

2024-04-26 18:39:03
Full thread dump OpenJDK 64-Bit Server VM (17.0.11+10-LTS mixed mode, sharing):

"Test worker" - Thread t@1
   java.lang.Thread.State: RUNNABLE
	at [email protected]/sun.management.ThreadImpl.dumpThreads0(Native Method)
	at [email protected]/sun.management.ThreadImpl.dumpAllThreads(ThreadImpl.java:528)
	at [email protected]/sun.management.ThreadImpl.dumpAllThreads(ThreadImpl.java:516)
	at app//org.springframework.boot.actuate.management.ThreadDumpEndpoint.getFormattedThreadDump(ThreadDumpEndpoint.java:52)
	at app//org.springframework.boot.actuate.management.ThreadDumpEndpoint.textThreadDump(ThreadDumpEndpoint.java:48)
	at [email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at [email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
	at [email protected]/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at [email protected]/java.lang.reflect.Method.invoke(Method.java:568)
	at app//org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281)
	at app//org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74)
	at app//org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60)
	at app//org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327)
	at app//org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434)
	at jdk.internal.reflect.GeneratedMethodAccessor64.invoke(Unknown Source)
	at [email protected]/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at [email protected]/java.lang.reflect.Method.invoke(Method.java:568)
	at app//org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
	at app//org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
	at app//org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
	at app//org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)
	at app//org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831)
	at app//org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
	at app//org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089)
	at app//org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
	at app//org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
	at app//org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903)
	at app//jakarta.servlet.http.HttpServlet.service(HttpServlet.java:527)
	at app//org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
	at app//org.springframework.test.web.servlet.TestDispatcherServlet.service(TestDispatcherServlet.java:72)
	at app//jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614)
	at app//org.springframework.mock.web.MockFilterChain$ServletFilterProxy.doFilter(MockFilterChain.java:165)
	at app//org.springframework.mock.web.MockFilterChain.doFilter(MockFilterChain.java:132)
	at app//org.springframework.test.web.servlet.MockMvc.perform(MockMvc.java:201)
	at app//org.springframework.boot.actuate.autoconfigure.endpoint.web.documentation.ThreadDumpEndpointDocumentationTests.textThreadDump(ThreadDumpEndpointDocumentationTests.java:182)
	at [email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at [email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
	at [email protected]/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at [email protected]/java.lang.reflect.Method.invoke(Method.java:568)
	at app//org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:728)
	at app//org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
	at app//org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
	at app//org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:156)
	at app//org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:147)
	at app//org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:86)
	at app//org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$204/0x00007f7540136068.apply(Unknown Source)
	at app//org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(InterceptingExecutableInvoker.java:103)
	at app//org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$205/0x00007f7540136488.apply(Unknown Source)
	at app//org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(InterceptingExecutableInvoker.java:93)
	at app//org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$489/0x00007f75401e6680.apply(Unknown Source)
	at app//org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
	at app//org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
	at app//org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
	at app//org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
	at app//org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:92)
	at app//org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(InterceptingExecutableInvoker.java:86)
	at app//org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:218)
	at app//org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$1031/0x00007f75405ee038.execute(Unknown Source)
	at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at app//org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:214)
	at app//org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:139)
	at app//org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:69)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$306/0x00007f7540156428.execute(Unknown Source)
	at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$305/0x00007f7540156200.invoke(Unknown Source)
	at app//org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$304/0x00007f7540153c98.execute(Unknown Source)
	at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
	at app//org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$310/0x00007f7540156f40.accept(Unknown Source)
	at [email protected]/java.util.ArrayList.forEach(ArrayList.java:1511)
	at app//org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$306/0x00007f7540156428.execute(Unknown Source)
	at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$305/0x00007f7540156200.invoke(Unknown Source)
	at app//org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$304/0x00007f7540153c98.execute(Unknown Source)
	at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
	at app//org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$310/0x00007f7540156f40.accept(Unknown Source)
	at [email protected]/java.util.ArrayList.forEach(ArrayList.java:1511)
	at app//org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$306/0x00007f7540156428.execute(Unknown Source)
	at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$305/0x00007f7540156200.invoke(Unknown Source)
	at app//org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$304/0x00007f7540153c98.execute(Unknown Source)
	at app//org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
	at app//org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
	at app//org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35)
	at app//org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
	at app//org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54)
	at app//org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:198)
	at app//org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:169)
	at app//org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:93)
	at app//org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:58)
	at app//org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$259/0x00007f7540141180.accept(Unknown Source)
	at app//org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:141)
	at app//org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:57)
	at app//org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:103)
	at app//org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:85)
	at app//org.junit.platform.launcher.core.DelegatingLauncher.execute(DelegatingLauncher.java:47)
	at app//org.junit.platform.launcher.core.SessionPerRequestLauncher.execute(SessionPerRequestLauncher.java:63)
	at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.processAllTestClasses(JUnitPlatformTestClassProcessor.java:99)
	at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor$CollectAllTestClassesExecutor.access$000(JUnitPlatformTestClassProcessor.java:79)
	at org.gradle.api.internal.tasks.testing.junitplatform.JUnitPlatformTestClassProcessor.stop(JUnitPlatformTestClassProcessor.java:75)
	at org.gradle.api.internal.tasks.testing.SuiteTestClassProcessor.stop(SuiteTestClassProcessor.java:62)
	at [email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at [email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
	at [email protected]/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at [email protected]/java.lang.reflect.Method.invoke(Method.java:568)
	at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:36)
	at org.gradle.internal.dispatch.ReflectionDispatch.dispatch(ReflectionDispatch.java:24)
	at org.gradle.internal.dispatch.ContextClassLoaderDispatch.dispatch(ContextClassLoaderDispatch.java:33)
	at org.gradle.internal.dispatch.ProxyDispatchAdapter$DispatchingInvocationHandler.invoke(ProxyDispatchAdapter.java:94)
	at jdk.proxy1/jdk.proxy1.$Proxy2.stop(Unknown Source)
	at org.gradle.api.internal.tasks.testing.worker.TestWorker$3.run(TestWorker.java:193)
	at org.gradle.api.internal.tasks.testing.worker.TestWorker.executeAndMaintainThreadName(TestWorker.java:129)
	at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:100)
	at org.gradle.api.internal.tasks.testing.worker.TestWorker.execute(TestWorker.java:60)
	at org.gradle.process.internal.worker.child.ActionExecutionWorker.execute(ActionExecutionWorker.java:56)
	at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:113)
	at org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker.call(SystemApplicationClassLoaderWorker.java:65)
	at app//worker.org.gradle.process.internal.worker.GradleWorkerMain.run(GradleWorkerMain.java:69)
	at app//worker.org.gradle.process.internal.worker.GradleWorkerMain.main(GradleWorkerMain.java:74)

   Locked ownable synchronizers:
	- None

"Reference Handler" - Thread t@2
   java.lang.Thread.State: RUNNABLE
	at [email protected]/java.lang.ref.Reference.waitForReferencePendingList(Native Method)
	at [email protected]/java.lang.ref.Reference.processPendingReferences(Reference.java:253)
	at [email protected]/java.lang.ref.Reference$ReferenceHandler.run(Reference.java:215)

   Locked ownable synchronizers:
	- None

"Finalizer" - Thread t@3
   java.lang.Thread.State: WAITING
	at [email protected]/java.lang.Object.wait(Native Method)
	- waiting on <2eb8e649> (a java.lang.ref.ReferenceQueue$Lock)
	at [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155)
	at [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:176)
	at [email protected]/java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:172)

   Locked ownable synchronizers:
	- None

"Signal Dispatcher" - Thread t@4
   java.lang.Thread.State: RUNNABLE

   Locked ownable synchronizers:
	- None

"Common-Cleaner" - Thread t@12
   java.lang.Thread.State: TIMED_WAITING
	at [email protected]/java.lang.Object.wait(Native Method)
	- waiting on <500bde5b> (a java.lang.ref.ReferenceQueue$Lock)
	at [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155)
	at [email protected]/jdk.internal.ref.CleanerImpl.run(CleanerImpl.java:140)
	at [email protected]/java.lang.Thread.run(Thread.java:840)
	at [email protected]/jdk.internal.misc.InnocuousThread.run(InnocuousThread.java:162)

   Locked ownable synchronizers:
	- None

"Notification Thread" - Thread t@13
   java.lang.Thread.State: RUNNABLE

   Locked ownable synchronizers:
	- None

"/127.0.0.1:51268 to /127.0.0.1:33747 workers" - Thread t@15
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <17d96ed9> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at org.gradle.internal.remote.internal.hub.queue.EndPointQueue.take(EndPointQueue.java:49)
	at org.gradle.internal.remote.internal.hub.MessageHub$Handler.run(MessageHub.java:403)
	at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64)
	at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:49)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- Locked <44a7bfbc> (a java.util.concurrent.ThreadPoolExecutor$Worker)

"/127.0.0.1:51268 to /127.0.0.1:33747 workers Thread 2" - Thread t@16
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <25a4c88a> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at org.gradle.internal.remote.internal.hub.queue.EndPointQueue.take(EndPointQueue.java:49)
	at org.gradle.internal.remote.internal.hub.MessageHub$ConnectionDispatch.run(MessageHub.java:322)
	at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64)
	at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:49)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- Locked <20f5239f> (a java.util.concurrent.ThreadPoolExecutor$Worker)

"/127.0.0.1:51268 to /127.0.0.1:33747 workers Thread 3" - Thread t@17
   java.lang.Thread.State: RUNNABLE
	at [email protected]/sun.nio.ch.EPoll.wait(Native Method)
	at [email protected]/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118)
	at [email protected]/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129)
	- locked <4cc7f8d9> (a sun.nio.ch.Util$2)
	- locked <1ec30f25> (a sun.nio.ch.EPollSelectorImpl)
	at [email protected]/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146)
	at org.gradle.internal.remote.internal.inet.SocketConnection$SocketInputStream.read(SocketConnection.java:185)
	at com.esotericsoftware.kryo.io.Input.fill(Input.java:146)
	at com.esotericsoftware.kryo.io.Input.require(Input.java:178)
	at com.esotericsoftware.kryo.io.Input.readByte(Input.java:295)
	at org.gradle.internal.serialize.kryo.KryoBackedDecoder.readByte(KryoBackedDecoder.java:88)
	at org.gradle.internal.remote.internal.hub.InterHubMessageSerializer$MessageReader.read(InterHubMessageSerializer.java:64)
	at org.gradle.internal.remote.internal.hub.InterHubMessageSerializer$MessageReader.read(InterHubMessageSerializer.java:52)
	at org.gradle.internal.remote.internal.inet.SocketConnection.receive(SocketConnection.java:81)
	at org.gradle.internal.remote.internal.hub.MessageHub$ConnectionReceive.run(MessageHub.java:270)
	at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64)
	at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:49)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- Locked <d29f28> (a java.util.concurrent.ThreadPoolExecutor$Worker)

"process reaper" - Thread t@21
   java.lang.Thread.State: TIMED_WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <1da074ef> (a java.util.concurrent.SynchronousQueue$TransferStack)
	at [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
	at [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
	at [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1061)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"Attach Listener" - Thread t@22
   java.lang.Thread.State: RUNNABLE

   Locked ownable synchronizers:
	- None

"HikariPool-1 housekeeper" - Thread t@30
   java.lang.Thread.State: TIMED_WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <6ed256b2> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1674)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"boundedElastic-evictor-1" - Thread t@41
   java.lang.Thread.State: TIMED_WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <2c50e59a> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1674)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"reactor-http-epoll-1" - Thread t@42
   java.lang.Thread.State: RUNNABLE
	at app//io.netty.channel.epoll.Native.epollWait(Native Method)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:220)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:213)
	at app//io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:308)
	at app//io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:365)
	at app//io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
	at app//io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at app//io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"server" - Thread t@43
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <2aec7d12> (a java.util.concurrent.CountDownLatch$Sync)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:211)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:715)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1047)
	at [email protected]/java.util.concurrent.CountDownLatch.await(CountDownLatch.java:230)
	at app//reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:91)
	at app//reactor.core.publisher.Mono.block(Mono.java:1779)
	at app//org.springframework.boot.web.embedded.netty.NettyWebServer$1.run(NettyWebServer.java:221)

   Locked ownable synchronizers:
	- None

"reactor-http-epoll-2" - Thread t@44
   java.lang.Thread.State: RUNNABLE
	at app//io.netty.channel.epoll.Native.epollWait(Native Method)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:220)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:213)
	at app//io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:308)
	at app//io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:365)
	at app//io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
	at app//io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at app//io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"reactor-http-epoll-3" - Thread t@45
   java.lang.Thread.State: RUNNABLE
	at app//io.netty.channel.epoll.Native.epollWait(Native Method)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:220)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:213)
	at app//io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:308)
	at app//io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:365)
	at app//io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
	at app//io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at app//io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"reactor-http-epoll-4" - Thread t@46
   java.lang.Thread.State: RUNNABLE
	at app//io.netty.channel.epoll.Native.epollWait(Native Method)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:220)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:213)
	at app//io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:308)
	at app//io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:365)
	at app//io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
	at app//io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at app//io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"reactor-http-epoll-5" - Thread t@47
   java.lang.Thread.State: RUNNABLE
	at app//io.netty.channel.epoll.Native.epollWait(Native Method)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:220)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:213)
	at app//io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:308)
	at app//io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:365)
	at app//io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
	at app//io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at app//io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"reactor-http-epoll-6" - Thread t@48
   java.lang.Thread.State: RUNNABLE
	at app//io.netty.channel.epoll.Native.epollWait(Native Method)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:220)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:213)
	at app//io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:308)
	at app//io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:365)
	at app//io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
	at app//io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at app//io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"reactor-http-epoll-7" - Thread t@49
   java.lang.Thread.State: RUNNABLE
	at app//io.netty.channel.epoll.Native.epollWait(Native Method)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:220)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:213)
	at app//io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:308)
	at app//io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:365)
	at app//io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
	at app//io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at app//io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"reactor-http-epoll-8" - Thread t@50
   java.lang.Thread.State: RUNNABLE
	at app//io.netty.channel.epoll.Native.epollWait(Native Method)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:220)
	at app//io.netty.channel.epoll.Native.epollWait(Native.java:213)
	at app//io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:308)
	at app//io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:365)
	at app//io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
	at app//io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at app//io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"boundedElastic-1" - Thread t@51
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <347573ac> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1170)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"Catalina-utility-1" - Thread t@53
   java.lang.Thread.State: TIMED_WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <486ec456> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1674)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"container-0" - Thread t@54
   java.lang.Thread.State: TIMED_WAITING
	at [email protected]/java.lang.Thread.sleep(Native Method)
	at app//org.apache.catalina.core.StandardServer.await(StandardServer.java:564)
	at app//org.springframework.boot.web.embedded.tomcat.TomcatWebServer$1.run(TomcatWebServer.java:219)

   Locked ownable synchronizers:
	- None

"Catalina-utility-2" - Thread t@55
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <486ec456> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-exec-1" - Thread t@56
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <63b994f4> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:117)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1114)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1176)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-exec-2" - Thread t@57
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <63b994f4> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:117)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1114)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1176)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-exec-3" - Thread t@58
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <63b994f4> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:117)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1114)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1176)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-exec-4" - Thread t@59
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <63b994f4> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:117)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1114)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1176)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-exec-5" - Thread t@60
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <63b994f4> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:117)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1114)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1176)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-exec-6" - Thread t@61
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <63b994f4> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:117)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1114)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1176)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-exec-7" - Thread t@62
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <63b994f4> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:117)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1114)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1176)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-exec-8" - Thread t@63
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <63b994f4> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:117)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1114)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1176)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-exec-9" - Thread t@64
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <63b994f4> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:117)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1114)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1176)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-exec-10" - Thread t@65
   java.lang.Thread.State: WAITING
	at [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
	- parking to wait for <63b994f4> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
	at [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
	at [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
	at [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
	at [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:117)
	at app//org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1114)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1176)
	at app//org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
	at app//org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-Poller" - Thread t@66
   java.lang.Thread.State: RUNNABLE
	at [email protected]/sun.nio.ch.EPoll.wait(Native Method)
	at [email protected]/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118)
	at [email protected]/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129)
	- locked <2af4717c> (a sun.nio.ch.Util$2)
	- locked <35038f9d> (a sun.nio.ch.EPollSelectorImpl)
	at [email protected]/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:141)
	at app//org.apache.tomcat.util.net.NioEndpoint$Poller.run(NioEndpoint.java:750)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- None

"http-nio-auto-1-Acceptor" - Thread t@67
   java.lang.Thread.State: RUNNABLE
	at [email protected]/sun.nio.ch.Net.accept(Native Method)
	at [email protected]/sun.nio.ch.ServerSocketChannelImpl.implAccept(ServerSocketChannelImpl.java:425)
	at [email protected]/sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:391)
	at app//org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:513)
	at app//org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:71)
	at app//org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:128)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- Locked <bf1b11f> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)

"pool-4-thread-1" - Thread t@74
   java.lang.Thread.State: RUNNABLE
	at [email protected]/java.util.concurrent.Executors.callable(Executors.java:419)
	at [email protected]/java.util.concurrent.FutureTask.<init>(FutureTask.java:152)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.<init>(ScheduledThreadPoolExecutor.java:215)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor.schedule(ScheduledThreadPoolExecutor.java:561)
	at [email protected]/java.util.concurrent.Executors$DelegatedScheduledExecutorService.schedule(Executors.java:813)
	at app//org.springframework.scheduling.concurrent.ReschedulingRunnable.schedule(ReschedulingRunnable.java:83)
	- locked <24408aa1> (a java.lang.Object)
	at app//org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:102)
	- locked <24408aa1> (a java.lang.Object)
	at [email protected]/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
	at [email protected]/java.util.concurrent.FutureTask.run(FutureTask.java:264)
	at [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
	at [email protected]/java.lang.Thread.run(Thread.java:840)

   Locked ownable synchronizers:
	- Locked <14f31f10> (a java.util.concurrent.ThreadPoolExecutor$Worker)