diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..188aca7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/customer-work/target/ +/customer-design/target/ +/customer-control/target/ diff --git a/.idea/modules.xml b/.idea/modules.xml index 29a0f78..c6ee2ba 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -2,6 +2,7 @@ + diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/customer-control/target/classes/application.properties b/customer-control/target/classes/application.properties deleted file mode 100644 index 28207ea..0000000 --- a/customer-control/target/classes/application.properties +++ /dev/null @@ -1,34 +0,0 @@ -server.port=8107 -server.servlet.context-path=/ - -#spring.datasource.driver-class-name=org.postgresql.Driver -spring.datasource.url=jdbc:postgresql://localhost:5435/flowable -spring.datasource.username=flowable -spring.datasource.password=flowable - -# In order for hot swapping to work for the custom.js and custom.css -spring.thymeleaf.cache=false -spring.web.resources.chain.cache=false - -# Enable all endpoints over HTTP -management.endpoints.web.exposure.include=* -management.endpoint.health.show-details=ALWAYS -# Pretty-print JSON responses -spring.jackson.serialization.indent_output=true - -# TODO Change these to an other random string with a length of 16 characters -# Used to encrypt your passwords. After a change existing password become invalid! -flowable.control.app.security.encryption.credentials-i-v-spec=fh39chqoxjDF3fhb -flowable.control.app.security.encryption.credentials-secret-spec=lw91VtkPq84nGqiJ - -flowable.control.app.cluster-config.name=Default Cluster -flowable.control.app.cluster-config.description=Default Flowable Cluster -flowable.control.app.cluster-config.server-address=http://localhost -flowable.control.app.cluster-config.port=8105 -flowable.control.app.cluster-config.context-root=/ -flowable.control.app.cluster-config.user-name=admin -flowable.control.app.cluster-config.password=test - -flowable.control.app.db-store-enabled=false -flowable.control.app.cluster-type=work -flowable.control.app.user-store.password=test \ No newline at end of file diff --git a/customer-control/target/classes/com/customer/control/ControlApplication.class b/customer-control/target/classes/com/customer/control/ControlApplication.class deleted file mode 100644 index 7a15127..0000000 Binary files a/customer-control/target/classes/com/customer/control/ControlApplication.class and /dev/null differ diff --git a/customer-design/target/classes/application.properties b/customer-design/target/classes/application.properties deleted file mode 100644 index 159657a..0000000 --- a/customer-design/target/classes/application.properties +++ /dev/null @@ -1,20 +0,0 @@ -server.port=8106 -#spring.datasource.url=jdbc:h2:~/flowable-design-db/db;AUTO_SERVER=TRUE;DB_CLOSE_DELAY=-1 -#spring.datasource.username=flowable -#spring.datasource.password=flowable - -#Comment out and configure database -spring.datasource.url=jdbc:postgresql://localhost:5435/flowable -spring.datasource.username=flowable -spring.datasource.password=flowable - - -# Connection to Work -flowable.design.remote.idm-url=http://localhost:8105/flowable-work -flowable.design.remote.authentication.user=admin -flowable.design.remote.authentication.password=test - -#flowable.design.deployment-api-url=http://localhost:8080/flowable-work/app-api -#flowable.design.undeployment-api-url=http://localhost:8080/flowable-work/platform-api/app-deployments -flowable.design.deployment-api-url=http://localhost:8105/app-api -flowable.design.undeployment-api-url=http://localhost:8105/platform-api/app-deployments diff --git a/customer-design/target/classes/com/customer/design/DesignApplication.class b/customer-design/target/classes/com/customer/design/DesignApplication.class deleted file mode 100644 index 8bcb230..0000000 Binary files a/customer-design/target/classes/com/customer/design/DesignApplication.class and /dev/null differ diff --git a/customer-design/target/classes/com/customer/design/SecurityHttpBasicConfiguration.class b/customer-design/target/classes/com/customer/design/SecurityHttpBasicConfiguration.class deleted file mode 100644 index 66c9dc2..0000000 Binary files a/customer-design/target/classes/com/customer/design/SecurityHttpBasicConfiguration.class and /dev/null differ diff --git a/customer-design/target/customer-design-0.0.1-SNAPSHOT.jar b/customer-design/target/customer-design-0.0.1-SNAPSHOT.jar deleted file mode 100644 index 298e2cc..0000000 Binary files a/customer-design/target/customer-design-0.0.1-SNAPSHOT.jar and /dev/null differ diff --git a/customer-design/target/customer-design-0.0.1-SNAPSHOT.jar.original b/customer-design/target/customer-design-0.0.1-SNAPSHOT.jar.original deleted file mode 100644 index fff89c7..0000000 Binary files a/customer-design/target/customer-design-0.0.1-SNAPSHOT.jar.original and /dev/null differ diff --git a/customer-design/target/maven-archiver/pom.properties b/customer-design/target/maven-archiver/pom.properties deleted file mode 100644 index f8324d7..0000000 --- a/customer-design/target/maven-archiver/pom.properties +++ /dev/null @@ -1,3 +0,0 @@ -artifactId=customer-design -groupId=com.customer -version=0.0.1-SNAPSHOT diff --git a/customer-design/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/customer-design/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst deleted file mode 100644 index 4eb4c2c..0000000 --- a/customer-design/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ /dev/null @@ -1,2 +0,0 @@ -com/customer/design/DesignApplication.class -com/customer/design/SecurityHttpBasicConfiguration.class diff --git a/customer-design/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/customer-design/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst deleted file mode 100644 index 3e8cfb8..0000000 --- a/customer-design/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ /dev/null @@ -1,2 +0,0 @@ -/Users/andi/prj/flowable/2025.2/customer-design/src/main/java/com/customer/design/DesignApplication.java -/Users/andi/prj/flowable/2025.2/customer-design/src/main/java/com/customer/design/SecurityHttpBasicConfiguration.java diff --git a/customer-design/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/customer-design/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst deleted file mode 100644 index d2f0193..0000000 --- a/customer-design/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +++ /dev/null @@ -1 +0,0 @@ -com/customer/design/DesignApplicationTests.class diff --git a/customer-design/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/customer-design/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst deleted file mode 100644 index a01e299..0000000 --- a/customer-design/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +++ /dev/null @@ -1 +0,0 @@ -/Users/andi/prj/flowable/2025.2/customer-design/src/test/java/com/customer/design/DesignApplicationTests.java diff --git a/customer-design/target/surefire-reports/TEST-com.customer.design.DesignApplicationTests.xml b/customer-design/target/surefire-reports/TEST-com.customer.design.DesignApplicationTests.xml deleted file mode 100644 index e8c41eb..0000000 --- a/customer-design/target/surefire-reports/TEST-com.customer.design.DesignApplicationTests.xml +++ /dev/null @@ -1,1776 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (PgConnection.java:290) - at org.postgresql.Driver.makeConnection(Driver.java:448) - at org.postgresql.Driver.connect(Driver.java:298) - at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:144) - at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:373) - at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:210) - at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:488) - at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:576) - at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:97) - at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:111) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) - at org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy$TransactionAwareInvocationHandler.invoke(TransactionAwareDataSourceProxy.java:256) - at jdk.proxy2/jdk.proxy2.$Proxy86.getMetaData(Unknown Source) - at org.flowable.common.engine.impl.util.DbUtil.determineDatabaseType(DbUtil.java:89) - ... 132 more -Caused by: java.net.ConnectException: Connection refused - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:639) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:543) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:594) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:284) - at java.base/java.net.Socket.connect(Socket.java:659) - at org.postgresql.core.PGStream.createSocket(PGStream.java:261) - at org.postgresql.core.PGStream.(PGStream.java:122) - at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:146) - at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:289) - ... 148 more -]]> - (PgConnection.java:290) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.Driver.makeConnection(Driver.java:448) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.Driver.connect(Driver.java:298) ~[postgresql-42.7.10.jar:42.7.10] - at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:144) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:373) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:210) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:488) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:576) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:97) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:111) ~[HikariCP-7.0.2.jar:na] - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) ~[spring-jdbc-7.0.5.jar:7.0.5] - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) ~[spring-jdbc-7.0.5.jar:7.0.5] - at org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy$TransactionAwareInvocationHandler.invoke(TransactionAwareDataSourceProxy.java:256) ~[spring-jdbc-7.0.5.jar:7.0.5] - at jdk.proxy2/jdk.proxy2.$Proxy86.getMetaData(Unknown Source) ~[na:na] - at org.flowable.common.engine.impl.util.DbUtil.determineDatabaseType(DbUtil.java:89) ~[flowable-engine-common-8.0.0.13.jar:8.0.0.13] - ... 198 common frames omitted -Caused by: java.net.ConnectException: Connection refused - at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na] - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:639) ~[na:na] - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:543) ~[na:na] - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:594) ~[na:na] - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:284) ~[na:na] - at java.base/java.net.Socket.connect(Socket.java:659) ~[na:na] - at org.postgresql.core.PGStream.createSocket(PGStream.java:261) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.core.PGStream.(PGStream.java:122) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:146) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:289) ~[postgresql-42.7.10.jar:42.7.10] - ... 214 common frames omitted - -2026-03-19T14:33:16.502+01:00 WARN 69968 --- [ main] o.s.test.context.TestContextManager : Caught exception while allowing TestExecutionListener [org.springframework.test.context.web.ServletTestExecutionListener] to prepare test instance [com.customer.design.DesignApplicationTests@47c5cbf2] - -java.lang.IllegalStateException: Failed to load ApplicationContext for [WebMergedContextConfiguration@4aba7617 testClass = com.customer.design.DesignApplicationTests, locations = [], classes = [com.customer.design.DesignApplication], contextInitializerClasses = [], activeProfiles = [], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true"], contextCustomizers = [org.springframework.boot.web.server.context.SpringBootTestRandomPortContextCustomizer@30bcf3c1, org.springframework.boot.test.context.PropertyMappingContextCustomizer@0, org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@7c2b6087, org.springframework.boot.test.http.client.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@354fc8f0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5b43fbf6, org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@5b07730f, org.springframework.test.context.support.DynamicPropertiesContextCustomizer@0, org.springframework.boot.test.context.SpringBootTestAnnotation@ae57ec99], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.lambda$loadContext$0(DefaultCacheAwareContextLoaderDelegate.java:195) ~[spring-test-7.0.5.jar:7.0.5] - at org.springframework.test.context.cache.DefaultContextCache.put(DefaultContextCache.java:214) ~[spring-test-7.0.5.jar:7.0.5] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:160) ~[spring-test-7.0.5.jar:7.0.5] - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:128) ~[spring-test-7.0.5.jar:7.0.5] - at org.springframework.test.context.web.ServletTestExecutionListener.setUpRequestContextIfNecessary(ServletTestExecutionListener.java:200) ~[spring-test-7.0.5.jar:7.0.5] - at org.springframework.test.context.web.ServletTestExecutionListener.prepareTestInstance(ServletTestExecutionListener.java:139) ~[spring-test-7.0.5.jar:7.0.5] - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) ~[spring-test-7.0.5.jar:7.0.5] - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:210) ~[spring-test-7.0.5.jar:7.0.5] - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$1(ClassBasedTestDescriptor.java:423) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.executeAndMaskThrowable(ClassBasedTestDescriptor.java:428) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$invokeTestInstancePostProcessors$0(ClassBasedTestDescriptor.java:422) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:186) ~[na:na] - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:214) ~[na:na] - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:197) ~[na:na] - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:214) ~[na:na] - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1716) ~[na:na] - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:570) ~[na:na] - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:560) ~[na:na] - at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:153) ~[na:na] - at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:176) ~[na:na] - at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:265) ~[na:na] - at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:632) ~[na:na] - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.invokeTestInstancePostProcessors(ClassBasedTestDescriptor.java:422) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$instantiateAndPostProcessTestInstance$0(ClassBasedTestDescriptor.java:334) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:74) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.instantiateAndPostProcessTestInstance(ClassBasedTestDescriptor.java:333) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$1(ClassBasedTestDescriptor.java:322) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at java.base/java.util.Optional.orElseGet(Optional.java:364) ~[na:na] - at org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor.lambda$testInstancesProvider$0(ClassBasedTestDescriptor.java:321) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at org.junit.jupiter.engine.execution.TestInstancesProvider.getTestInstances(TestInstancesProvider.java:27) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$prepare$0(TestMethodTestDescriptor.java:127) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:74) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:126) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.prepare(TestMethodTestDescriptor.java:70) ~[junit-jupiter-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$prepare$0(NodeTestTask.java:144) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:74) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.prepare(NodeTestTask.java:144) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:110) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at java.base/java.util.ArrayList.forEach(ArrayList.java:1604) ~[na:na] - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:42) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$2(NodeTestTask.java:180) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:74) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$1(NodeTestTask.java:166) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:138) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$0(NodeTestTask.java:164) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:74) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:163) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:116) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at java.base/java.util.ArrayList.forEach(ArrayList.java:1604) ~[na:na] - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:42) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$2(NodeTestTask.java:180) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:74) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$1(NodeTestTask.java:166) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:138) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$0(NodeTestTask.java:164) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:74) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:163) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:116) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:36) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:52) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:58) ~[junit-platform-engine-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.executeEngine(EngineExecutionOrchestrator.java:246) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.failOrExecuteEngine(EngineExecutionOrchestrator.java:218) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:179) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:108) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:66) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:157) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:65) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:125) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.DelegatingLauncher.execute(DelegatingLauncher.java:58) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.InterceptingLauncher.lambda$execute$2(InterceptingLauncher.java:57) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.ClasspathAlignmentCheckingLauncherInterceptor.intercept(ClasspathAlignmentCheckingLauncherInterceptor.java:25) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.InterceptingLauncher.execute(InterceptingLauncher.java:56) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at org.junit.platform.launcher.core.DelegatingLauncher.execute(DelegatingLauncher.java:58) ~[junit-platform-launcher-6.0.3.jar:6.0.3] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:565) ~[na:na] - at org.apache.maven.surefire.api.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:125) ~[surefire-api-3.5.4.jar:3.5.4] - at org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithCancellationToken(LauncherAdapter.java:68) ~[surefire-junit-platform-3.5.4.jar:3.5.4] - at org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(LauncherAdapter.java:54) ~[surefire-junit-platform-3.5.4.jar:3.5.4] - at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(JUnitPlatformProvider.java:203) ~[surefire-junit-platform-3.5.4.jar:3.5.4] - at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(JUnitPlatformProvider.java:168) ~[surefire-junit-platform-3.5.4.jar:3.5.4] - at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(JUnitPlatformProvider.java:136) ~[surefire-junit-platform-3.5.4.jar:3.5.4] - at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:385) ~[surefire-booter-3.5.4.jar:3.5.4] - at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:162) ~[surefire-booter-3.5.4.jar:3.5.4] - at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:507) ~[surefire-booter-3.5.4.jar:3.5.4] - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:495) ~[surefire-booter-3.5.4.jar:3.5.4] -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration': Unsatisfied dependency expressed through method 'setFilterChains' parameter 0: Error creating bean with name 'basicDefaultSecurity' defined in class path resource [com/customer/design/SecurityHttpBasicConfiguration.class]: Unsatisfied dependency expressed through method 'basicDefaultSecurity' parameter 0: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity' defined in class path resource [org/springframework/security/config/annotation/web/configuration/HttpSecurityConfiguration.class]: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'designUserDetailsService' defined in class path resource [com/flowable/autoconfigure/design/security/DesignSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designUserDetailsService' parameter 0: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.resolveMethodArguments(AutowiredAnnotationBeanPostProcessor.java:872) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.inject(AutowiredAnnotationBeanPostProcessor.java:827) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:146) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:493) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1446) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:602) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:196) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.instantiateSingleton(DefaultListableBeanFactory.java:1218) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingleton(DefaultListableBeanFactory.java:1184) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:1121) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:994) ~[spring-context-7.0.5.jar:7.0.5] - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:621) ~[spring-context-7.0.5.jar:7.0.5] - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:756) ~[spring-boot-4.0.3.jar:4.0.3] - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:445) ~[spring-boot-4.0.3.jar:4.0.3] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:321) ~[spring-boot-4.0.3.jar:4.0.3] - at org.springframework.boot.test.context.SpringBootContextLoader.lambda$loadContext$2(SpringBootContextLoader.java:156) ~[spring-boot-test-4.0.3.jar:4.0.3] - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:58) ~[spring-core-7.0.5.jar:7.0.5] - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:46) ~[spring-core-7.0.5.jar:7.0.5] - at org.springframework.boot.SpringApplication.withHook(SpringApplication.java:1465) ~[spring-boot-4.0.3.jar:4.0.3] - at org.springframework.boot.test.context.SpringBootContextLoader$ContextLoaderHook.run(SpringBootContextLoader.java:605) ~[spring-boot-test-4.0.3.jar:4.0.3] - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:156) ~[spring-boot-test-4.0.3.jar:4.0.3] - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:115) ~[spring-boot-test-4.0.3.jar:4.0.3] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContextInternal(DefaultCacheAwareContextLoaderDelegate.java:247) ~[spring-test-7.0.5.jar:7.0.5] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.lambda$loadContext$0(DefaultCacheAwareContextLoaderDelegate.java:167) ~[spring-test-7.0.5.jar:7.0.5] - ... 86 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'basicDefaultSecurity' defined in class path resource [com/customer/design/SecurityHttpBasicConfiguration.class]: Unsatisfied dependency expressed through method 'basicDefaultSecurity' parameter 0: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity' defined in class path resource [org/springframework/security/config/annotation/web/configuration/HttpSecurityConfiguration.class]: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'designUserDetailsService' defined in class path resource [com/flowable/autoconfigure/design/security/DesignSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designUserDetailsService' parameter 0: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.addCandidateEntry(DefaultListableBeanFactory.java:2008) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1971) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeanCollection(DefaultListableBeanFactory.java:1863) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeans(DefaultListableBeanFactory.java:1833) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1711) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.resolveMethodArguments(AutowiredAnnotationBeanPostProcessor.java:864) ~[spring-beans-7.0.5.jar:7.0.5] - ... 113 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity' defined in class path resource [org/springframework/security/config/annotation/web/configuration/HttpSecurityConfiguration.class]: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'designUserDetailsService' defined in class path resource [com/flowable/autoconfigure/design/security/DesignSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designUserDetailsService' parameter 0: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:657) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:489) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:351) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1762) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) ~[spring-beans-7.0.5.jar:7.0.5] - ... 130 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'designUserDetailsService' defined in class path resource [com/flowable/autoconfigure/design/security/DesignSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designUserDetailsService' parameter 0: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.lambda$instantiate$0(SimpleInstantiationStrategy.java:183) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiateWithFactoryMethod(SimpleInstantiationStrategy.java:72) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:152) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) ~[spring-beans-7.0.5.jar:7.0.5] - ... 142 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'designUserDetailsService' defined in class path resource [com/flowable/autoconfigure/design/security/DesignSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designUserDetailsService' parameter 0: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1305) ~[spring-context-7.0.5.jar:7.0.5] - at org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer.configure(InitializeUserDetailsBeanManagerConfigurer.java:94) ~[spring-security-config-7.0.3.jar:7.0.3] - at org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer.configure(InitializeUserDetailsBeanManagerConfigurer.java:63) ~[spring-security-config-7.0.3.jar:7.0.3] - at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.configure(AbstractConfiguredSecurityBuilder.java:386) ~[spring-security-config-7.0.3.jar:7.0.3] - at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.doBuild(AbstractConfiguredSecurityBuilder.java:336) ~[spring-security-config-7.0.3.jar:7.0.3] - at org.springframework.security.config.annotation.AbstractSecurityBuilder.build(AbstractSecurityBuilder.java:38) ~[spring-security-config-7.0.3.jar:7.0.3] - at org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration.getAuthenticationManager(AuthenticationConfiguration.java:121) ~[spring-security-config-7.0.3.jar:7.0.3] - at org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.authenticationManager(HttpSecurityConfiguration.java:152) ~[spring-security-config-7.0.3.jar:7.0.3] - at org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity(HttpSecurityConfiguration.java:119) ~[spring-security-config-7.0.3.jar:7.0.3] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:565) ~[na:na] - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.lambda$instantiate$0(SimpleInstantiationStrategy.java:155) ~[spring-beans-7.0.5.jar:7.0.5] - ... 145 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1762) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) ~[spring-beans-7.0.5.jar:7.0.5] - ... 166 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:209) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.getObjectFromFactoryBean(FactoryBeanRegistrySupport.java:149) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.getObjectForBeanInstance(AbstractBeanFactory.java:1879) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.getObjectForBeanInstance(AbstractAutowireCapableBeanFactory.java:1304) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:343) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1762) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) ~[spring-beans-7.0.5.jar:7.0.5] - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) ~[spring-beans-7.0.5.jar:7.0.5] - ... 180 common frames omitted -Caused by: java.lang.RuntimeException: Exception while initializing Database connection - at org.flowable.common.engine.impl.util.DbUtil.determineDatabaseType(DbUtil.java:116) ~[flowable-engine-common-8.0.0.13.jar:8.0.0.13] - at org.flowable.common.engine.impl.AbstractEngineConfiguration.initDatabaseType(AbstractEngineConfiguration.java:475) ~[flowable-engine-common-8.0.0.13.jar:8.0.0.13] - at org.flowable.common.engine.impl.AbstractEngineConfiguration.initDataSource(AbstractEngineConfiguration.java:470) ~[flowable-engine-common-8.0.0.13.jar:8.0.0.13] - at com.flowable.design.engine.DesignEngineConfiguration.init(DesignEngineConfiguration.java:365) ~[flowable-design-engine-2025.2.04.jar:2025.2.04] - at org.flowable.common.engine.impl.AbstractBuildableEngineConfiguration.buildEngine(AbstractBuildableEngineConfiguration.java:28) ~[flowable-engine-common-8.0.0.13.jar:8.0.0.13] - at com.flowable.design.engine.DesignEngineConfiguration.buildDesignEngine(DesignEngineConfiguration.java:336) ~[flowable-design-engine-2025.2.04.jar:2025.2.04] - at com.flowable.design.engine.spring.DesignEngineFactoryBean.getObject(DesignEngineFactoryBean.java:36) ~[flowable-design-engine-2025.2.04.jar:2025.2.04] - at com.flowable.design.engine.spring.DesignEngineFactoryBean.getObject(DesignEngineFactoryBean.java:20) ~[flowable-design-engine-2025.2.04.jar:2025.2.04] - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:203) ~[spring-beans-7.0.5.jar:7.0.5] - ... 190 common frames omitted -Caused by: org.postgresql.util.PSQLException: Connection to localhost:5435 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections. - at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:373) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:57) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.jdbc.PgConnection.(PgConnection.java:290) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.Driver.makeConnection(Driver.java:448) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.Driver.connect(Driver.java:298) ~[postgresql-42.7.10.jar:42.7.10] - at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:144) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:373) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:210) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:488) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:576) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:97) ~[HikariCP-7.0.2.jar:na] - at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:111) ~[HikariCP-7.0.2.jar:na] - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) ~[spring-jdbc-7.0.5.jar:7.0.5] - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) ~[spring-jdbc-7.0.5.jar:7.0.5] - at org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy$TransactionAwareInvocationHandler.invoke(TransactionAwareDataSourceProxy.java:256) ~[spring-jdbc-7.0.5.jar:7.0.5] - at jdk.proxy2/jdk.proxy2.$Proxy86.getMetaData(Unknown Source) ~[na:na] - at org.flowable.common.engine.impl.util.DbUtil.determineDatabaseType(DbUtil.java:89) ~[flowable-engine-common-8.0.0.13.jar:8.0.0.13] - ... 198 common frames omitted -Caused by: java.net.ConnectException: Connection refused - at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na] - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:639) ~[na:na] - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:543) ~[na:na] - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:594) ~[na:na] - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:284) ~[na:na] - at java.base/java.net.Socket.connect(Socket.java:659) ~[na:na] - at org.postgresql.core.PGStream.createSocket(PGStream.java:261) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.core.PGStream.(PGStream.java:122) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:146) ~[postgresql-42.7.10.jar:42.7.10] - at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:289) ~[postgresql-42.7.10.jar:42.7.10] - ... 214 common frames omitted - -]]> - ; SearchStrategy: all) did not find any beans (OnBeanCondition) - - Jackson2AutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - Jackson2AutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - Jackson2AutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - Jackson2AutoConfiguration.JacksonObjectMapperBuilderConfiguration#jackson2ObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - Jackson2AutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - Jackson2AutoConfiguration.JacksonObjectMapperConfiguration#jackson2ObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - Jackson2AutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - Jackson2AutoConfiguration.ParameterNamesModuleConfiguration#jackson2ParameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'tools.jackson.databind.json.JsonMapper' (OnClassCondition) - - JacksonAutoConfiguration#jacksonJsonMapper matched: - - @ConditionalOnMissingBean (types: tools.jackson.databind.json.JsonMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration#jsonMapperBuilder matched: - - @ConditionalOnMissingBean (types: tools.jackson.databind.json.JsonMapper$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JsonProblemDetailsConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.ProblemDetail' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.JacksonJsonHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'tools.jackson.databind.json.JsonMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.http.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: tools.jackson.databind.json.JsonMapper; SearchStrategy: all) found bean 'jacksonJsonMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.JacksonJsonHttpMessageConverterConfiguration#jacksonJsonHttpMessageConvertersCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.JacksonJsonHttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedJacksonJsonHttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJacksonJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LicenseMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found bean 'jdbcTemplate' (OnBeanCondition) - - LicenseMetricsConfiguration#licenseRequestsPublisher matched: - - @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - LicenseMetricsConfiguration.MetricsRestConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBooleanProperty (spring.servlet.multipart.enabled=true) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnBooleanProperty (spring.persistence.exceptiontranslation.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformValidationConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.validation.bpmn.impl.FlowablePlatformServiceTaskValidator' (OnClassCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ReactiveHttpClientAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.http.client.reactive.ClientHttpConnector', 'reactor.core.publisher.Mono' (OnClassCondition) - - Detected ClientHttpConnectorBuilder (ConditionalOnClientHttpConnectorBuilderDetection) - - ReactiveHttpClientAutoConfiguration#clientHttpConnector matched: - - @ConditionalOnMissingBean (types: org.springframework.http.client.reactive.ClientHttpConnector; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ReactiveHttpClientAutoConfiguration#clientHttpConnectorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.http.client.reactive.ClientHttpConnectorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ReactiveWebSecurityAutoConfiguration matched: - - @ConditionalOnClass found required classes 'reactor.core.publisher.Flux', 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity', 'org.springframework.security.web.server.WebFilterChainProxy', 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - RestApiAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.common.rest.resolver.ContentTypeResolver' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - RestApiAutoConfiguration.DesignRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.design.rest.service.api.DesignEngineRestMarker' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.design.engine.DesignEngine; SearchStrategy: all) found bean 'designEngine' (OnBeanCondition) - - RestApiAutoConfiguration.DesignRestApiConfiguration#designCurrentUserAvailableApplicationsEnhancer matched: - - @ConditionalOnMissingBean (names: designCurrentUserAvailableApplicationsEnhancer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestApiAutoConfiguration.DesignRestApiConfiguration#designRestEngineConfigurer matched: - - @ConditionalOnMissingBean (names: designRestEngineConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestApiAutoConfiguration.DesignRestApiConfiguration#flowableDefaultContentMediaTypeResolver matched: - - @ConditionalOnProperty (flowable.design.content-type-resolver=default) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: com.flowable.design.rest.service.api.util.ContentMediaTypeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestApiAutoConfiguration.PaletteRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.palette.rest.service.api.PaletteEngineRestMarker' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.palette.api.PaletteRepositoryService; SearchStrategy: all) found bean 'paletteRepositoryService' (OnBeanCondition) - - SecurityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityAutoConfiguration#authenticationEventPublisher matched: - - @ConditionalOnMissingBean (types: org.springframework.security.authentication.AuthenticationEventPublisher; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityFilterAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.security.web.context.AbstractSecurityWebApplicationInitializer', 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - SecurityFilterAutoConfiguration#securityFilterChainRegistration matched: - - @ConditionalOnBean (names: springSecurityFilterChain; SearchStrategy: all) found bean 'springSecurityFilterChain' (OnBeanCondition) - - SecurityHttpBasicConfiguration matched: - - @ConditionalOnProperty (application.design.security.type=basic) matched (OnPropertyCondition) - - ServletWebSecurityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebSecurityAutoConfiguration.PathPatternRequestMatcherBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.boot.webmvc.autoconfigure.DispatcherServletPath' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.webmvc.autoconfigure.DispatcherServletPath; SearchStrategy: all) found bean 'dispatcherServletRegistration' (OnBeanCondition) - - ServletWebSecurityAutoConfiguration.PathPatternRequestMatcherBuilderConfiguration#pathPatternRequestMatcherBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.security.web.servlet.util.matcher.PathPatternRequestMatcher$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.AsyncConfigurerConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.scheduling.annotation.AsyncConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on TaskExecutorConfigurations.OnExecutorCondition.ModelCondition @ConditionalOnProperty (spring.task.execution.mode=force) did not find property 'spring.task.execution.mode'; NestedCondition on TaskExecutorConfigurations.OnExecutorCondition.ExecutorBeanCondition @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (TaskExecutorConfigurations.OnExecutorCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TemplateEngineConfigurations.DefaultTemplateEngineConfiguration#templateEngine matched: - - @ConditionalOnMissingBean (types: org.thymeleaf.spring6.ISpringTemplateEngine; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThymeleafAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.thymeleaf.templatemode.TemplateMode', 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - ThymeleafAutoConfiguration.DefaultTemplateResolverConfiguration matched: - - @ConditionalOnMissingBean (names: defaultTemplateResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThymeleafAutoConfiguration.ThymeleafWebMvcConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ThymeleafAutoConfiguration.ThymeleafWebMvcConfiguration#resourceUrlEncodingFilter matched: - - @ConditionalOnEnabledResourceChain enabled (OnEnabledResourceChainCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.resource.ResourceUrlEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThymeleafAutoConfiguration.ThymeleafWebMvcConfiguration.ThymeleafViewResolverConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.view.AbstractCachingViewResolver' (OnClassCondition) - - ThymeleafAutoConfiguration.ThymeleafWebMvcConfiguration.ThymeleafViewResolverConfiguration#thymeleafViewResolver matched: - - @ConditionalOnMissingBean (names: thymeleafViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatServletWebServerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.ServletRequest', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol', 'org.springframework.boot.tomcat.servlet.TomcatServletWebServerFactory' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - TomcatServletWebServerAutoConfiguration#tomcatServletWebServerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.server.servlet.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnBooleanProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.transaction.autoconfigure.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientAutoConfiguration#webClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.reactive.function.client.WebClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebClientAutoConfiguration#webClientHttpConnectorCustomizer matched: - - @ConditionalOnBean (types: org.springframework.http.client.reactive.ClientHttpConnector; SearchStrategy: all) found bean 'clientHttpConnector' (OnBeanCondition) - - WebClientAutoConfiguration#webClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.webclient.autoconfigure.WebClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebClientAutoConfiguration.WebClientCodecsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.http.codec.CodecCustomizer; SearchStrategy: all) found beans 'jacksonCodecCustomizer', 'defaultCodecCustomizer' (OnBeanCondition) - - WebClientAutoConfiguration.WebClientCodecsConfiguration#exchangeStrategiesCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.webclient.autoconfigure.WebClientCodecCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnBooleanProperty (spring.mvc.formcontent.filter.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#viewNameTranslator matched: - - @ConditionalOnMissingBean (names: viewNameTranslator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration matched: - - @ConditionalOnEnabledResourceChain enabled (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - AopAutoConfiguration.AspectJAutoProxyingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - CodecsAutoConfiguration.Jackson2JsonCodecConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on CodecsAutoConfiguration.NoJacksonOrJackson2Preferred.Jackson2Preferred @ConditionalOnProperty (spring.http.codecs.preferred-json-mapper=jackson2) did not find property 'spring.http.codecs.preferred-json-mapper'; NestedCondition on CodecsAutoConfiguration.NoJacksonOrJackson2Preferred.NoJackson @ConditionalOnMissingClass found unwanted class 'tools.jackson.databind.json.JsonMapper' (CodecsAutoConfiguration.NoJacksonOrJackson2Preferred) - Matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - CodecsAutoConfiguration.KotlinxSerializationJsonCodecConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'kotlinx.serialization.json.Json' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.health.autoconfigure.contributor.ConditionalOnEnabledHealthIndicator' (OnClassCondition) - - DataSourceJmxConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (spring.jmx.enabled=true) found different value in property 'spring.jmx.enabled' (OnPropertyCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - DesignBucket4jRateLimitConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.github.bucket4j.distributed.proxy.ProxyManager' (OnClassCondition) - - DesignCurrentUserEnhancersConfiguration.AccessTokenConfiguration: - Did not match: - - AllNestedConditions 0 matched 2 did not; NestedCondition on DesignCurrentUserEnhancersConfiguration.AccessTokenEnhancerCondition.AccessTokenSigningSecretProperty @ConditionalOnProperty (flowable.design.security.access-token.signing-secret) did not find property 'signing-secret'; NestedCondition on DesignCurrentUserEnhancersConfiguration.AccessTokenEnhancerCondition.JwtAvailable @ConditionalOnClass did not find required classes 'org.springframework.security.oauth2.jwt.Jwt', 'org.springframework.security.oauth2.server.resource.authentication.JwtAuthenticationToken' (DesignCurrentUserEnhancersConfiguration.AccessTokenEnhancerCondition) - - DesignCurrentUserEnhancersConfiguration.LicenseDbStoreConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.design.db-store-enabled=true) did not find property 'flowable.design.db-store-enabled' (OnPropertyCondition) - - DesignEngineAutoConfiguration#modelTenantDeploymentTenantProvider: - Did not match: - - @ConditionalOnProperty (flowable.design.deployment-tenant-source=model-tenant-id) did not find property 'deployment-tenant-source' (OnPropertyCondition) - - DesignEngineAutoConfiguration#modelWorkspaceDeploymentTenantProvider: - Did not match: - - @ConditionalOnProperty (flowable.design.deployment-tenant-source=model-workspace-key) did not find property 'deployment-tenant-source' (OnPropertyCondition) - - DesignEngineAutoConfiguration.PasswordEncoderConfiguration#accessTokenPasswordEncoderConfigurer: - Did not match: - - @ConditionalOnProperty (flowable.design.security.access-token.signing-secret) did not find property 'signing-secret' (OnPropertyCondition) - - DesignGraphAutoConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.design.idm.service-type=microsoft-graph) did not find property 'service-type' (OnPropertyCondition) - - DesignHttpClientConfiguration.ApacheHttpClient: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.http.impl.client.HttpClientBuilder' (OnClassCondition) - - DesignHttpClientConfiguration.ApacheHttpClient5: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.hc.client5.http.impl.async.HttpAsyncClientBuilder' (OnClassCondition) - - DesignInfoContributorConfiguration.ActuatorDesignInfoContributorConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.info.InfoContributor' (OnClassCondition) - - DesignLdapAutoConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.design.idm.service-type=ldap) did not find property 'service-type' (OnPropertyCondition) - - DesignLdapSecurityAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: com.flowable.design.engine.api.idm.ldap.DesignLdapConfigurationApi; SearchStrategy: all) did not find any beans of type com.flowable.design.engine.api.idm.ldap.DesignLdapConfigurationApi (OnBeanCondition) - - DesignLicenseAutoConfiguration.LicenseServiceDatabaseStoreConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.design.db-store-enabled=true) did not find property 'flowable.design.db-store-enabled' (OnPropertyCondition) - - DesignOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.core.user.OAuth2User' (OnClassCondition) - - DesignOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - DesignRemoteHttpCustomizerConfiguration.IdTokenFactoryConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.jwt.JwtDecoderFactory' (OnClassCondition) - - DesignRemoteHttpCustomizerConfiguration.OAuthCurrentUserRemoteHttpConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.security.oauth2.client.registration.ClientRegistrationRepository; SearchStrategy: all) did not find any beans of type org.springframework.security.oauth2.client.registration.ClientRegistrationRepository (OnBeanCondition) - - DesignRemoteHttpCustomizerConfiguration.OAuthRemoteHttpConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.security.oauth2.client.registration.ClientRegistrationRepository; SearchStrategy: all) did not find any beans of type org.springframework.security.oauth2.client.registration.ClientRegistrationRepository (OnBeanCondition) - - DesignSecurityOAuth2AutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.core.user.OAuth2User' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HttpClientMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - Jackson2HttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on Jackson2HttpMessageConvertersConfiguration.PreferJackson2OrJacksonUnavailableCondition.JacksonUnavailable @ConditionalOnMissingBean (types: org.springframework.boot.http.converter.autoconfigure.JacksonHttpMessageConvertersConfiguration$JacksonJsonHttpMessageConvertersCustomizer; SearchStrategy: all) found beans of type 'org.springframework.boot.http.converter.autoconfigure.JacksonHttpMessageConvertersConfiguration$JacksonJsonHttpMessageConvertersCustomizer' jacksonJsonHttpMessageConvertersCustomizer; NestedCondition on Jackson2HttpMessageConvertersConfiguration.PreferJackson2OrJacksonUnavailableCondition.Jackson2Preferred @ConditionalOnProperty (spring.http.converters.preferred-json-mapper=jackson2) did not find property 'spring.http.converters.preferred-json-mapper' (Jackson2HttpMessageConvertersConfiguration.PreferJackson2OrJacksonUnavailableCondition) - Matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - Jackson2HttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JacksonAutoConfiguration.CborConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'tools.jackson.dataformat.cbor.CBORMapper' (OnClassCondition) - - JacksonAutoConfiguration.XmlConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'tools.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.JacksonXmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'tools.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JmxAutoConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (spring.jmx.enabled=true) found different value in property 'spring.jmx.enabled' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'spring.datasource.jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JtaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.transaction.Transaction' (OnClassCondition) - - KotlinSerializationHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'kotlinx.serialization.Serializable', 'kotlinx.serialization.json.Json' (OnClassCondition) - - LicenseMetricsConfiguration.MetricsLicensePublisherConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.rsocket.server.RSocketServerCustomizer' (OnClassCondition) - - ReactiveHttpClientAutoConfiguration.ReactorNetty: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.reactor.netty.autoconfigure.ReactorNettyConfigurations' (OnClassCondition) - - ReactiveHttpServiceClientAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.service.registry.HttpServiceProxyRegistry; SearchStrategy: all) did not find any beans of type org.springframework.web.service.registry.HttpServiceProxyRegistry (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.reactive.function.client.support.WebClientAdapter' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on ReactiveUserDetailsServiceAutoConfiguration.RSocketEnabledOrReactiveWebApplication.ReactiveWebApplicationCondition not a reactive web application; NestedCondition on ReactiveUserDetailsServiceAutoConfiguration.RSocketEnabledOrReactiveWebApplication.RSocketSecurityEnabledCondition @ConditionalOnBean (types: org.springframework.messaging.rsocket.annotation.support.RSocketMessageHandler; SearchStrategy: all) did not find any beans of type org.springframework.messaging.rsocket.annotation.support.RSocketMessageHandler (ReactiveUserDetailsServiceAutoConfiguration.RSocketEnabledOrReactiveWebApplication) - Matched: - - @ConditionalOnClass found required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - AnyNestedCondition 1 matched 2 did not; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.PasswordConfigured @ConditionalOnProperty (spring.security.user.password) did not find property 'spring.security.user.password'; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.NameConfigured @ConditionalOnProperty (spring.security.user.name) did not find property 'spring.security.user.name'; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.MissingAlternative @ConditionalOnMissingClass did not find unwanted classes 'org.springframework.security.oauth2.client.registration.ClientRegistrationRepository', 'org.springframework.security.oauth2.server.resource.introspection.OpaqueTokenIntrospector', 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured) - - ReactiveWebSecurityAutoConfiguration.SpringBootWebFluxSecurityConfiguration: - Did not match: - - not a reactive web application (OnWebApplicationCondition) - - RestAiAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.design.ai.rest.service.api.DesignAiRestMarker' (OnClassCondition) - - RestApiAutoConfiguration.DesignRestApiConfiguration#flowableTikaAutoDetectParserContentMediaTypeResolver: - Did not match: - - @ConditionalOnProperty (flowable.design.content-type-resolver=tika-auto-detect-parser) did not find property 'content-type-resolver' (OnPropertyCondition) - - SecurityAutoConfiguration.SecurityDataConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.data.repository.query.SecurityEvaluationContextExtension' (OnClassCondition) - - ServletHttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository' (OnBeanCondition) - - ServletManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' (OnClassCondition) - - ServletMappingsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.autoconfigure.endpoint.condition.ConditionalOnAvailableEndpoint' (OnClassCondition) - - ServletWebSecurityAutoConfiguration.EnableWebSecurityConfiguration: - Did not match: - - @ConditionalOnMissingBean (names: springSecurityFilterChain; SearchStrategy: all) found beans named springSecurityFilterChain (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - ServletWebSecurityAutoConfiguration.SecurityFilterChainConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) found beans of type 'org.springframework.security.web.SecurityFilterChain' basicDefaultSecurity; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass found required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - - ServletWebServerConfiguration#forwardedHeaderFilter: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (spring.application.admin.enabled=true) did not find property 'spring.application.admin.enabled' (OnPropertyCondition) - - TaskExecutorConfigurations.AsyncConfigurerWrapperConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.scheduling.annotation.AsyncConfigurer; SearchStrategy: all) did not find any beans of type org.springframework.scheduling.annotation.AsyncConfigurer (OnBeanCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.scheduling.config.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.scheduling.config.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.scheduling.config.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.scheduling.config.internalScheduledAnnotationProcessor (OnBeanCondition) - - TemplateEngineConfigurations.ReactiveTemplateEngineConfiguration: - Did not match: - - not a reactive web application (OnWebApplicationCondition) - - ThymeleafAutoConfiguration.DataAttributeDialectConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.mxab.thymeleaf.extras.dataattribute.dialect.DataAttributeDialect' (OnClassCondition) - - ThymeleafAutoConfiguration.ThymeleafSecurityDialectConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.extras.springsecurity6.dialect.SpringSecurityDialect' (OnClassCondition) - - ThymeleafAutoConfiguration.ThymeleafWebFluxConfiguration: - Did not match: - - not a reactive web application (OnWebApplicationCondition) - - ThymeleafAutoConfiguration.ThymeleafWebLayoutConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'nz.net.ultraq.thymeleaf.layoutdialect.LayoutDialect' (OnClassCondition) - - TomcatMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics' (OnClassCondition) - - TomcatReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextFactory' (OnClassCondition) - - TomcatReactiveWebServerAutoConfiguration: - Did not match: - - not a reactive web application (OnWebApplicationCondition) - Matched: - - @ConditionalOnClass found required classes 'org.springframework.http.ReactiveHttpInputMessage', 'org.apache.catalina.startup.Tomcat', 'org.springframework.boot.tomcat.reactive.TomcatReactiveWebServerFactory' (OnClassCondition) - - TomcatServletManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextFactory' (OnClassCondition) - - TomcatServletWebServerAutoConfiguration#tomcatForwardedHeaderFilterCustomizer: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - TomcatWebServerConfiguration: - Did not match: - - Application is deployed as a WAR file. (OnWarDeploymentCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'org.springframework.transaction.aspectj.AbstractTransactionAspect' (OnBeanCondition) - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (spring.aop.proxy-target-class=false) did not find property 'spring.aop.proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.security.authentication.AuthenticationManager,org.springframework.security.authentication.AuthenticationProvider,org.springframework.security.core.userdetails.UserDetailsService,org.springframework.security.authentication.AuthenticationManagerResolver,org.springframework.security.oauth2.jwt.JwtDecoder; SearchStrategy: all) found beans of type 'org.springframework.security.core.userdetails.UserDetailsService' designUserDetailsService (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - AnyNestedCondition 1 matched 2 did not; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.PasswordConfigured @ConditionalOnProperty (spring.security.user.password) did not find property 'spring.security.user.password'; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.NameConfigured @ConditionalOnProperty (spring.security.user.name) did not find property 'spring.security.user.name'; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.MissingAlternative @ConditionalOnMissingClass did not find unwanted classes 'org.springframework.security.oauth2.client.registration.ClientRegistrationRepository', 'org.springframework.security.oauth2.server.resource.introspection.OpaqueTokenIntrospector', 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured) - - WebClientObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.micrometer.observation.autoconfigure.ObservationProperties' (OnClassCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnBooleanProperty (spring.mvc.hiddenmethod.filter.enabled=true) did not find property 'spring.mvc.hiddenmethod.filter.enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (spring.mvc.problemdetails.enabled=true) did not find property 'spring.mvc.problemdetails.enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcHealthEndpointExtensionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.health.actuate.endpoint.HealthEndpoint' (OnClassCondition) - - WebMvcMappingsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.autoconfigure.endpoint.condition.ConditionalOnAvailableEndpoint' (OnClassCondition) - - WebMvcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.micrometer.observation.autoconfigure.ObservationProperties' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.transaction.TransactionManager' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.http.client.autoconfigure.HttpClientAutoConfiguration - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.http.client.autoconfigure.service.HttpServiceClientPropertiesAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -]]> - - \ No newline at end of file diff --git a/customer-design/target/surefire-reports/com.customer.design.DesignApplicationTests.txt b/customer-design/target/surefire-reports/com.customer.design.DesignApplicationTests.txt deleted file mode 100644 index 0c9314c..0000000 --- a/customer-design/target/surefire-reports/com.customer.design.DesignApplicationTests.txt +++ /dev/null @@ -1,195 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.customer.design.DesignApplicationTests -------------------------------------------------------------------------------- -Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 2.527 s <<< FAILURE! -- in com.customer.design.DesignApplicationTests -com.customer.design.DesignApplicationTests.contextLoads -- Time elapsed: 0.012 s <<< ERROR! -java.lang.IllegalStateException: Failed to load ApplicationContext for [WebMergedContextConfiguration@4aba7617 testClass = com.customer.design.DesignApplicationTests, locations = [], classes = [com.customer.design.DesignApplication], contextInitializerClasses = [], activeProfiles = [], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true"], contextCustomizers = [org.springframework.boot.web.server.context.SpringBootTestRandomPortContextCustomizer@30bcf3c1, org.springframework.boot.test.context.PropertyMappingContextCustomizer@0, org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@7c2b6087, org.springframework.boot.test.http.client.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@354fc8f0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5b43fbf6, org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@5b07730f, org.springframework.test.context.support.DynamicPropertiesContextCustomizer@0, org.springframework.boot.test.context.SpringBootTestAnnotation@ae57ec99], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.lambda$loadContext$0(DefaultCacheAwareContextLoaderDelegate.java:195) - at org.springframework.test.context.cache.DefaultContextCache.put(DefaultContextCache.java:214) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:160) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:128) - at org.springframework.test.context.web.ServletTestExecutionListener.setUpRequestContextIfNecessary(ServletTestExecutionListener.java:200) - at org.springframework.test.context.web.ServletTestExecutionListener.prepareTestInstance(ServletTestExecutionListener.java:139) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:210) - at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:186) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:214) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:214) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1716) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:570) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:560) - at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:153) - at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:176) - at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:265) - at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:632) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1604) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1604) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration': Unsatisfied dependency expressed through method 'setFilterChains' parameter 0: Error creating bean with name 'basicDefaultSecurity' defined in class path resource [com/customer/design/SecurityHttpBasicConfiguration.class]: Unsatisfied dependency expressed through method 'basicDefaultSecurity' parameter 0: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity' defined in class path resource [org/springframework/security/config/annotation/web/configuration/HttpSecurityConfiguration.class]: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'designUserDetailsService' defined in class path resource [com/flowable/autoconfigure/design/security/DesignSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designUserDetailsService' parameter 0: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.resolveMethodArguments(AutowiredAnnotationBeanPostProcessor.java:872) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.inject(AutowiredAnnotationBeanPostProcessor.java:827) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:146) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:493) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1446) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:602) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:196) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.instantiateSingleton(DefaultListableBeanFactory.java:1218) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingleton(DefaultListableBeanFactory.java:1184) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:1121) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:994) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:621) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:756) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:445) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:321) - at org.springframework.boot.test.context.SpringBootContextLoader.lambda$loadContext$2(SpringBootContextLoader.java:156) - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:58) - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:46) - at org.springframework.boot.SpringApplication.withHook(SpringApplication.java:1465) - at org.springframework.boot.test.context.SpringBootContextLoader$ContextLoaderHook.run(SpringBootContextLoader.java:605) - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:156) - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:115) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContextInternal(DefaultCacheAwareContextLoaderDelegate.java:247) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.lambda$loadContext$0(DefaultCacheAwareContextLoaderDelegate.java:167) - ... 21 more -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'basicDefaultSecurity' defined in class path resource [com/customer/design/SecurityHttpBasicConfiguration.class]: Unsatisfied dependency expressed through method 'basicDefaultSecurity' parameter 0: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity' defined in class path resource [org/springframework/security/config/annotation/web/configuration/HttpSecurityConfiguration.class]: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'designUserDetailsService' defined in class path resource [com/flowable/autoconfigure/design/security/DesignSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designUserDetailsService' parameter 0: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.addCandidateEntry(DefaultListableBeanFactory.java:2008) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1971) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeanCollection(DefaultListableBeanFactory.java:1863) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeans(DefaultListableBeanFactory.java:1833) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1711) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.resolveMethodArguments(AutowiredAnnotationBeanPostProcessor.java:864) - ... 48 more -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity' defined in class path resource [org/springframework/security/config/annotation/web/configuration/HttpSecurityConfiguration.class]: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'designUserDetailsService' defined in class path resource [com/flowable/autoconfigure/design/security/DesignSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designUserDetailsService' parameter 0: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:657) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:489) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:351) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1762) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 65 more -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'designUserDetailsService' defined in class path resource [com/flowable/autoconfigure/design/security/DesignSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designUserDetailsService' parameter 0: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.lambda$instantiate$0(SimpleInstantiationStrategy.java:183) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiateWithFactoryMethod(SimpleInstantiationStrategy.java:72) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:152) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) - ... 77 more -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'designUserDetailsService' defined in class path resource [com/flowable/autoconfigure/design/security/DesignSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designUserDetailsService' parameter 0: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1305) - at org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer.configure(InitializeUserDetailsBeanManagerConfigurer.java:94) - at org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer.configure(InitializeUserDetailsBeanManagerConfigurer.java:63) - at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.configure(AbstractConfiguredSecurityBuilder.java:386) - at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.doBuild(AbstractConfiguredSecurityBuilder.java:336) - at org.springframework.security.config.annotation.AbstractSecurityBuilder.build(AbstractSecurityBuilder.java:38) - at org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration.getAuthenticationManager(AuthenticationConfiguration.java:121) - at org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.authenticationManager(HttpSecurityConfiguration.java:152) - at org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity(HttpSecurityConfiguration.java:119) - at java.base/java.lang.reflect.Method.invoke(Method.java:565) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.lambda$instantiate$0(SimpleInstantiationStrategy.java:155) - ... 80 more -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'designIdentityQueryService' defined in class path resource [com/flowable/autoconfigure/design/DesignEngineAutoConfiguration.class]: Unsatisfied dependency expressed through method 'designIdentityQueryService' parameter 0: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1762) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 100 more -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'designEngine': FactoryBean threw exception on object creation - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:209) - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.getObjectFromFactoryBean(FactoryBeanRegistrySupport.java:149) - at org.springframework.beans.factory.support.AbstractBeanFactory.getObjectForBeanInstance(AbstractBeanFactory.java:1879) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.getObjectForBeanInstance(AbstractAutowireCapableBeanFactory.java:1304) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:343) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1762) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 114 more -Caused by: java.lang.RuntimeException: Exception while initializing Database connection - at org.flowable.common.engine.impl.util.DbUtil.determineDatabaseType(DbUtil.java:116) - at org.flowable.common.engine.impl.AbstractEngineConfiguration.initDatabaseType(AbstractEngineConfiguration.java:475) - at org.flowable.common.engine.impl.AbstractEngineConfiguration.initDataSource(AbstractEngineConfiguration.java:470) - at com.flowable.design.engine.DesignEngineConfiguration.init(DesignEngineConfiguration.java:365) - at org.flowable.common.engine.impl.AbstractBuildableEngineConfiguration.buildEngine(AbstractBuildableEngineConfiguration.java:28) - at com.flowable.design.engine.DesignEngineConfiguration.buildDesignEngine(DesignEngineConfiguration.java:336) - at com.flowable.design.engine.spring.DesignEngineFactoryBean.getObject(DesignEngineFactoryBean.java:36) - at com.flowable.design.engine.spring.DesignEngineFactoryBean.getObject(DesignEngineFactoryBean.java:20) - at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:203) - ... 124 more -Caused by: org.postgresql.util.PSQLException: Connection to localhost:5435 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections. - at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:373) - at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:57) - at org.postgresql.jdbc.PgConnection.(PgConnection.java:290) - at org.postgresql.Driver.makeConnection(Driver.java:448) - at org.postgresql.Driver.connect(Driver.java:298) - at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:144) - at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:373) - at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:210) - at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:488) - at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:576) - at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:97) - at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:111) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) - at org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy$TransactionAwareInvocationHandler.invoke(TransactionAwareDataSourceProxy.java:256) - at jdk.proxy2/jdk.proxy2.$Proxy86.getMetaData(Unknown Source) - at org.flowable.common.engine.impl.util.DbUtil.determineDatabaseType(DbUtil.java:89) - ... 132 more -Caused by: java.net.ConnectException: Connection refused - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:639) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:543) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:594) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:284) - at java.base/java.net.Socket.connect(Socket.java:659) - at org.postgresql.core.PGStream.createSocket(PGStream.java:261) - at org.postgresql.core.PGStream.(PGStream.java:122) - at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:146) - at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:289) - ... 148 more - diff --git a/customer-design/target/test-classes/com/customer/design/DesignApplicationTests.class b/customer-design/target/test-classes/com/customer/design/DesignApplicationTests.class deleted file mode 100644 index 20927a2..0000000 Binary files a/customer-design/target/test-classes/com/customer/design/DesignApplicationTests.class and /dev/null differ diff --git a/customer-parent.iml b/customer-parent.iml new file mode 100644 index 0000000..dec2193 --- /dev/null +++ b/customer-parent.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/customer-work/src/test/java/com/customer/work/model/FlowableModelTestUtils.java b/customer-work/src/test/java/com/customer/work/model/FlowableModelTestUtils.java index 58431db..a2ef4df 100644 --- a/customer-work/src/test/java/com/customer/work/model/FlowableModelTestUtils.java +++ b/customer-work/src/test/java/com/customer/work/model/FlowableModelTestUtils.java @@ -2,7 +2,6 @@ package com.customer.work.model; import com.customer.work.service.JsonUtils; import com.fasterxml.jackson.databind.JsonNode; -import com.fasterxml.jackson.databind.node.ArrayNode; import com.fasterxml.jackson.databind.node.ObjectNode; import com.flowable.audit.api.AuditService; import com.flowable.audit.api.runtime.AuditInstance; @@ -31,8 +30,6 @@ import org.junit.jupiter.params.provider.Arguments; import org.junit.platform.commons.util.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.springframework.http.HttpHeaders; -import org.springframework.http.ResponseEntity; import org.springframework.security.authentication.TestingAuthenticationToken; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.context.SecurityContextHolder; @@ -46,7 +43,6 @@ import java.nio.file.Paths; import java.util.*; import java.util.stream.Collectors; import java.util.stream.Stream; -import java.util.stream.StreamSupport; @Component public class FlowableModelTestUtils { @@ -416,36 +412,15 @@ public class FlowableModelTestUtils { return result; } - public void exportApp(String rootUrl, String appModelKey, String username, String password) { + public void exportApp(String rootUrl, String workspaceKey, String appModelKey, String username, String password) { RestClient restClient = RestClient.builder() .baseUrl(rootUrl) .defaultHeaders(h -> h.setBasicAuth(username, password)) .build(); - ResponseEntity responseEntity = restClient.post() - .uri("/app/authentication?j_username=" + username + "&j_password=" + password + "&spring_security_remember_me=true&submit=Login") - .retrieve() - .toEntity(JsonNode.class); - - String designCookieRaw = responseEntity.getHeaders().get("Set-Cookie").stream().collect(Collectors.joining(";")); - String flowableDesignRememberMeTokenValue = Arrays.stream(designCookieRaw.split(";")).filter(part -> part.contains("FLOWABLE_DESIGN_REMEMBER_ME")).findAny().get(); - String csrfToken = Arrays.stream(designCookieRaw.split(";")).filter(part -> part.contains("FLOWABLE_DESIGN_CSRF_TOKEN")).findAny().get(); - - HttpHeaders httpHeaders = new HttpHeaders(); - httpHeaders.set("Cookie", flowableDesignRememberMeTokenValue + ";" + csrfToken); - - ArrayNode apps = (ArrayNode) restClient.get() - .uri("/app/models?filter=apps&modelType=3&sort=modifiedDesc") - .headers(h -> h.addAll(httpHeaders)) - .retrieve() - .body(JsonNode.class) - .path("data"); - String appModelId = StreamSupport.stream(apps.spliterator(), false).filter(app -> app.path("key").asText().equals(appModelKey)).map(app -> app.path("id").asText()).findAny().get(); - File file = new File(Paths.get("src/test/resources/test-auto-deploy-apps", appModelKey + ".zip").toString()); restClient.get() - .uri("/app/app-definitions/" + appModelId + "/export-bar?includeChildReferences=true") - .header("Cookie", flowableDesignRememberMeTokenValue + ";" + csrfToken) + .uri("/design-api/workspaces/" + workspaceKey + "/apps/" + appModelKey + "/export?excludeChildReferences=false") .exchange((req, resp) -> { StreamUtils.copy(resp.getBody(), new FileOutputStream(file, false)); return file; diff --git a/customer-work/src/test/java/com/customer/work/model/test/ModelTest.java b/customer-work/src/test/java/com/customer/work/model/test/ModelTest.java index e271f95..aa29dab 100644 --- a/customer-work/src/test/java/com/customer/work/model/test/ModelTest.java +++ b/customer-work/src/test/java/com/customer/work/model/test/ModelTest.java @@ -28,7 +28,7 @@ public class ModelTest { @Test @Disabled public void exportApp() { - flowableModelTest.exportApp("http://localhost:8093", "TST_APP", "admin", "test"); + flowableModelTest.exportApp("http://localhost:8106", "andiWS", "TST_APP", "admin", "test"); } @Test diff --git a/customer-work/src/test/resources/test-auto-deploy-apps/TST_APP.zip b/customer-work/src/test/resources/test-auto-deploy-apps/TST_APP.zip index 62086df..d78118a 100644 Binary files a/customer-work/src/test/resources/test-auto-deploy-apps/TST_APP.zip and b/customer-work/src/test/resources/test-auto-deploy-apps/TST_APP.zip differ diff --git a/customer-work/target/classes/application.properties b/customer-work/target/classes/application.properties deleted file mode 100644 index f6d5519..0000000 --- a/customer-work/target/classes/application.properties +++ /dev/null @@ -1,38 +0,0 @@ -server.port=8105 - -# Enable all endpoints over HTTP -management.endpoints.web.exposure.include=* -management.endpoint.health.show-details=when_authorized - -flowable.frontend.title=flowable-work - -#spring.datasource.url=jdbc:h2:~/flowable-work-db/db;AUTO_SERVER=TRUE;DB_CLOSE_DELAY=-1 -#spring.datasource.username=flowable -#spring.datasource.password=flowable - -#Comment out and configure database -spring.datasource.url=jdbc:postgresql://localhost:5435/flowable -spring.datasource.username=flowable -spring.datasource.password=flowable - -# Local Elasticsearch config -spring.elasticsearch.uris=http://localhost:9203 - -# spring.data.elasticsearch.repositories.enabled=true -# spring.data.elasticsearch.cluster-nodes=localhost:9300 -# spring.data.elasticsearch.cluster-name=elasticsearch - -flowable.indexing.index-name-prefix=flowable-work- -#Disable ElasticSearch Indexing -#flowable.indexing.enabled=false - -# Enable Flowable Inspect -flowable.inspect.enabled=true - -# Forms will update even if an old process/case/task definition will be used -flowable.platform.enable-latest-form-definition-lookup=true - -# Server URL for REST calls -baseUrl=http://localhost:8105 - - diff --git a/customer-work/target/classes/com/customer/work/SecurityHttpBasicConfiguration.class b/customer-work/target/classes/com/customer/work/SecurityHttpBasicConfiguration.class deleted file mode 100644 index ca9b67c..0000000 Binary files a/customer-work/target/classes/com/customer/work/SecurityHttpBasicConfiguration.class and /dev/null differ diff --git a/customer-work/target/classes/com/customer/work/StaticResourceConfiguration.class b/customer-work/target/classes/com/customer/work/StaticResourceConfiguration.class deleted file mode 100644 index 87d79e4..0000000 Binary files a/customer-work/target/classes/com/customer/work/StaticResourceConfiguration.class and /dev/null differ diff --git a/customer-work/target/classes/com/customer/work/WorkApplication.class b/customer-work/target/classes/com/customer/work/WorkApplication.class deleted file mode 100644 index f10c5a2..0000000 Binary files a/customer-work/target/classes/com/customer/work/WorkApplication.class and /dev/null differ diff --git a/customer-work/target/classes/com/customer/work/service/JsonUtils$1.class b/customer-work/target/classes/com/customer/work/service/JsonUtils$1.class deleted file mode 100644 index 0a312fd..0000000 Binary files a/customer-work/target/classes/com/customer/work/service/JsonUtils$1.class and /dev/null differ diff --git a/customer-work/target/classes/com/customer/work/service/JsonUtils$2.class b/customer-work/target/classes/com/customer/work/service/JsonUtils$2.class deleted file mode 100644 index 902792c..0000000 Binary files a/customer-work/target/classes/com/customer/work/service/JsonUtils$2.class and /dev/null differ diff --git a/customer-work/target/classes/com/customer/work/service/JsonUtils.class b/customer-work/target/classes/com/customer/work/service/JsonUtils.class deleted file mode 100644 index 615d277..0000000 Binary files a/customer-work/target/classes/com/customer/work/service/JsonUtils.class and /dev/null differ diff --git a/customer-work/target/classes/com/customer/work/service/VarUtils.class b/customer-work/target/classes/com/customer/work/service/VarUtils.class deleted file mode 100644 index 3a4bd75..0000000 Binary files a/customer-work/target/classes/com/customer/work/service/VarUtils.class and /dev/null differ diff --git a/customer-work/target/classes/com/flowable/filters/contact/work-contact-filters.json b/customer-work/target/classes/com/flowable/filters/contact/work-contact-filters.json deleted file mode 100644 index a0087c6..0000000 --- a/customer-work/target/classes/com/flowable/filters/contact/work-contact-filters.json +++ /dev/null @@ -1,48 +0,0 @@ -[ - { - "key": "all", - "labelKey": "contacts.filter.all", - "defaultLabel": "All", - "parameters": {} - }, - { - "key": "internal", - "labelKey": "contacts.filter.internal", - "defaultLabel": "Internal", - "parameters": { - "must": { - "type": "default" - } - } - }, - { - "key": "external", - "labelKey": "contacts.filter.external", - "defaultLabel": "External", - "parameters": { - "must" : { - "type": "external" - } - } - }, - { - "key": "active", - "labelKey": "contacts.filter.active", - "defaultLabel": "Active", - "parameters": { - "must" : { - "state": "ACTIVE" - } - } - }, - { - "key": "inactive", - "labelKey": "contacts.filter.inactive", - "defaultLabel": "Inactive", - "parameters": { - "must" : { - "state": "INACTIVE" - } - } - } -] \ No newline at end of file diff --git a/customer-work/target/classes/com/flowable/tenant-setup/custom/work-custom.json b/customer-work/target/classes/com/flowable/tenant-setup/custom/work-custom.json deleted file mode 100644 index c9c6129..0000000 --- a/customer-work/target/classes/com/flowable/tenant-setup/custom/work-custom.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "Flowable", - - "groups": [ - { "key": "flowableUser", "name": "Flowable User" }, - { "key": "flowableAdministrator", "name": "Flowable Administrator" } - ], - - "users": [ - { - "firstName": "Flowable", - "lastName": "Admin", - "login": "admin", - "email": "test@demo.flowable.io", - - "language": "en", - "theme": "flowable", - "userDefinitionKey": "user-admin" - } - ] -} \ No newline at end of file diff --git a/customer-work/target/classes/com/flowable/users/custom/work-custom.user.json b/customer-work/target/classes/com/flowable/users/custom/work-custom.user.json deleted file mode 100644 index e3f68c5..0000000 --- a/customer-work/target/classes/com/flowable/users/custom/work-custom.user.json +++ /dev/null @@ -1,67 +0,0 @@ -[ - { - "key": "user-default", - "name": "Default user", - "description": "Creates a new, non-specific user where the member groups can be freely chosen.", - "initialState": "ACTIVE", - "initialSubState": "ACTIVE", - "forms": { - "init": "F01_userInitFormDefault", - "view": "F02_userViewFormDefault", - "edit": "F03_userEditFormDefault" - }, - "memberGroups": [ - "flowableUser" - ], - "lookupGroups":[ - "flowableUser" - ], - "actionPermissions": { - "create": [ "flowableAdministrator" ], - "edit": [ "flowableAdministrator" ], - "deactivate": [ "flowableAdministrator" ], - "activate": [ "flowableAdministrator" ] - }, - "contactFilters": [ "all" ], - "allowedFeatures": [ "contacts", "bubbles", "markdownInput", "replyToMessage", "forwardMessage", "reactToMessage", "fileUpload", "work", "createWork", - "personalAccessTokens", - "tasks", "documents", "changeOwnPassword", "changeOwnTheme", "editOwnAvatar"] - }, - { - "key": "user-admin", - "name": "Administration User", - "description": "Creates a new, administration user.", - "initialUserSubType": "admin", - "initialState": "ACTIVE", - "initialSubState": "ACTIVE", - "forms": { - "init": "F01_userInitFormDefault", - "view": "F02_userViewFormDefault", - "edit": "F03_userEditFormDefault" - }, - "memberGroups": [ - "flowableUser", - "flowableAdministrator" - ], - "lookupGroups":[ - "flowableUser" - ], - "actionPermissions": { - "create": [ "flowableAdministrator"], - "edit": [ "flowableAdministrator" ], - "deactivate": [ "flowableAdministrator" ], - "activate": [ "flowableAdministrator" ] - }, - "initialVariables": { - "adminUser": true, - "description": "Admin" - }, - "contactFilters": [ "all", "internal", "external", "inactive"], - "allowedFeatures": [ "contacts", "createUser", "reports", - "actuators", "user-mgmt", "search-api", "workobject-api", "templateManagement", - "markdownInput", "replyToMessage", "forwardMessage", "reactToMessage", "fileUpload", "work", "createWork", "tasks", "documents", - "impersonateUser", - "personalAccessTokens", - "changeOwnPassword", "changeOwnTheme", "editOwnAvatar", "themeManagement"] - } -] \ No newline at end of file diff --git a/customer-work/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/customer-work/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst deleted file mode 100644 index 36bea68..0000000 --- a/customer-work/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ /dev/null @@ -1,3 +0,0 @@ -com/customer/work/WorkApplication.class -com/customer/work/StaticResourceConfiguration.class -com/customer/work/SecurityHttpBasicConfiguration.class diff --git a/customer-work/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/customer-work/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst deleted file mode 100644 index b025098..0000000 --- a/customer-work/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ /dev/null @@ -1,3 +0,0 @@ -/Users/andi/prj/flowable/2025.2/customer-work/src/main/java/com/customer/work/SecurityHttpBasicConfiguration.java -/Users/andi/prj/flowable/2025.2/customer-work/src/main/java/com/customer/work/StaticResourceConfiguration.java -/Users/andi/prj/flowable/2025.2/customer-work/src/main/java/com/customer/work/WorkApplication.java diff --git a/customer-work/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/customer-work/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst deleted file mode 100644 index e2a4edd..0000000 --- a/customer-work/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +++ /dev/null @@ -1 +0,0 @@ -com/customer/work/WorkApplicationTests.class diff --git a/customer-work/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/customer-work/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst deleted file mode 100644 index 8d39a64..0000000 --- a/customer-work/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +++ /dev/null @@ -1 +0,0 @@ -/Users/andi/prj/flowable/2025.2/customer-work/src/test/java/com/customer/work/WorkApplicationTests.java diff --git a/customer-work/target/surefire-reports/TEST-com.customer.work.WorkApplicationTests.xml b/customer-work/target/surefire-reports/TEST-com.customer.work.WorkApplicationTests.xml deleted file mode 100644 index 02168be..0000000 --- a/customer-work/target/surefire-reports/TEST-com.customer.work.WorkApplicationTests.xml +++ /dev/null @@ -1,4850 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.indexing.api.IndexingService' (OnClassCondition) - - @ConditionalOnProperty (flowable.indexing.enabled=true) matched (OnPropertyCondition) - - IndexingAutoConfiguration#activityIndexingDataProducer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.dataproducer.ActivityIndexingDataProducer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#appEngineIndexingConfigurator matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.index.AppEngineIndexingConfigurator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#caseInstanceIndexingDataProducer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.dataproducer.CaseInstanceIndexingDataProducer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#contentItemIndexingDataProducer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.dataproducer.ContentItemIndexingDataProducer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#defaultIndexVariableTypes matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.variable.types.IndexVariableTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#defaultIndexingFilterProvider matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.filter.IndexingFilterProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#elasticsearchCompatibility matched: - - @ConditionalOnMissingBean (types: com.flowable.indexing.ElasticsearchCompatibility; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#flowableDefaultIndexingResourceProvider matched: - - @ConditionalOnProperty (flowable.indexing.enable-default-mappings=true) matched (OnPropertyCondition) - - IndexingAutoConfiguration#indexManager matched: - - @ConditionalOnMissingBean (types: com.flowable.indexing.IndexManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#planItemIndexingDataProducer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.dataproducer.PlanItemIndexingDataProducer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#platformGlobalSearchResultMapper matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.work.PlatformGlobalSearchResultMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#processInstanceIndexingDataProducer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.dataproducer.ProcessInstanceIndexingDataProducer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#slaAuditInstanceIndexingDataProducer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.dataproducer.SlaAuditInstanceIndexingDataProducer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#taskIndexingDataProducer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.dataproducer.TaskIndexingDataProducer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration#workIndexingDataProducer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.dataproducer.WorkIndexingDataProducer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IndexingAutoConfiguration.CoreServiceConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.core.service.service.FlowableSystemInfoContributor' (OnClassCondition) - - IndexingAutoConfiguration.CoreServiceConfiguration#elasticSearchFlowableSystemInfoContributor matched: - - @ConditionalOnAvailableSystemInfoProvider no property flowable.core.system-info.providers.elasticsearch.disabled found so enabling by default (OnAvailableSystemInfoProvider) - - InspectAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.inspect.rest.service.InspectInstanceService', 'com.flowable.inspect.engine.InspectEngine', 'com.flowable.inspect.engine.InspectEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.inspect.enabled=true) matched (OnPropertyCondition) - - InspectBreakpointAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.inspect.rest.service.InspectInstanceService', 'com.flowable.inspect.engine.InspectEngine', 'com.flowable.inspect.engine.InspectEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.inspect.enabled=true) matched (OnPropertyCondition) - - InspectEngineAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.inspect.engine.InspectEngine', 'com.flowable.inspect.engine.InspectEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.inspect.enabled=true) matched (OnPropertyCondition) - - InspectEngineAutoConfiguration#inspectEngineConfiguration matched: - - @ConditionalOnMissingBean (types: com.flowable.inspect.engine.InspectEngineConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InspectEngineAutoConfiguration.InspectEngineAppConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found bean 'appEngineConfiguration' (OnBeanCondition) - - InspectEngineAutoConfiguration.InspectEngineAppConfiguration#inspectAppEngineConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: inspectAppEngineConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InspectEngineAutoConfiguration.InspectEngineAppConfiguration#inspectEngineConfigurator matched: - - @ConditionalOnMissingBean (types: com.flowable.inspect.engine.configurator.InspectEngineConfigurator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InspectEngineServicesAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.inspect.engine.InspectEngine', 'com.flowable.inspect.engine.InspectEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.inspect.enabled=true) matched (OnPropertyCondition) - - InspectEngineServicesAutoConfiguration.AlreadyInitializedAppEngineConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngine; SearchStrategy: all) found bean 'flowableAppEngine'; @ConditionalOnMissingBean (types: com.flowable.inspect.engine.InspectEngine; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IntegrationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationAutoConfiguration#integrationGlobalProperties matched: - - @ConditionalOnMissingBean (names: integrationGlobalProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IntegrationAutoConfiguration.IntegrationComponentScanConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.integration.config.IntegrationComponentScanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IntegrationAutoConfiguration.IntegrationConfiguration#defaultPollerMetadata matched: - - @ConditionalOnMissingBean (names: org.springframework.integration.context.defaultPollerMetadata; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IntegrationAutoConfiguration.IntegrationManagementConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.integration.config.EnableIntegrationManagement' (OnClassCondition) - - @ConditionalOnMissingBean (names: integrationManagementConfigurer types: org.springframework.integration.config.IntegrationManagementConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - IntegrationAutoConfiguration.IntegrationTaskSchedulerConfiguration matched: - - @ConditionalOnMissingBean (names: taskScheduler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - IntegrationAutoConfiguration.IntegrationTaskSchedulerConfiguration#taskScheduler matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - @ConditionalOnBean (types: org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) found bean 'threadPoolTaskSchedulerBuilder' (OnBeanCondition) - - Jackson2AutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - Jackson2AutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - Jackson2AutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - Jackson2AutoConfiguration.JacksonObjectMapperBuilderConfiguration#jackson2ObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - Jackson2AutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - Jackson2AutoConfiguration.JacksonObjectMapperConfiguration#jackson2ObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - Jackson2AutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - Jackson2AutoConfiguration.ParameterNamesModuleConfiguration#jackson2ParameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - Jackson2EndpointAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - Jackson2EndpointAutoConfiguration#jackson2EndpointJsonMapper matched: - - @ConditionalOnBooleanProperty (management.endpoints.jackson2.isolated-object-mapper=true) matched (OnPropertyCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'tools.jackson.databind.json.JsonMapper' (OnClassCondition) - - JacksonAutoConfiguration#jacksonJsonMapper matched: - - @ConditionalOnMissingBean (types: tools.jackson.databind.json.JsonMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration#jsonMapperBuilder matched: - - @ConditionalOnMissingBean (types: tools.jackson.databind.json.JsonMapper$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JsonProblemDetailsConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.ProblemDetail' (OnClassCondition) - - JacksonEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'tools.jackson.databind.json.JsonMapper' (OnClassCondition) - - JacksonEndpointAutoConfiguration#endpointJsonMapper matched: - - @ConditionalOnBooleanProperty (management.endpoints.jackson.isolated-json-mapper=true) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.JacksonJsonHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'tools.jackson.databind.json.JsonMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.http.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: tools.jackson.databind.json.JsonMapper; SearchStrategy: all) found bean 'jacksonJsonMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.JacksonJsonHttpMessageConverterConfiguration#jacksonJsonHttpMessageConvertersCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.JacksonJsonHttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedJacksonJsonHttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJacksonJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LicenseMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found bean 'jdbcTemplate' (OnBeanCondition) - - LicenseMetricsConfiguration.MetricsLicensePublisherConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - LicenseMetricsConfiguration.MetricsRestConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - LicenseSchemaManagerAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.core.service.CoreServiceMarker' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - LicenseSystemInformationConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.service.configuration.service.LicenseSystemInfoContributor' (OnClassCondition) - - LicenseSystemInformationConfiguration#licenseSystemInfoContributor matched: - - @ConditionalOnAvailableSystemInfoProvider no property flowable.core.system-info.providers.license.disabled found so enabling by default (OnAvailableSystemInfoProvider) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBooleanProperty (spring.servlet.multipart.enabled=true) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration#spelValueExpressionResolver matched: - - @ConditionalOnMissingBean (types: io.micrometer.common.annotation.ValueExpressionResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - OrchestrateLicenseCheckAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.core.service.CoreServiceMarker' (OnClassCondition) - - OrchestrateLicenseCheckAutoConfiguration.LicenseServiceConfiguration matched: - - @ConditionalOnProperty (flowable.license.db-store-enabled=false) matched (OnPropertyCondition) - - OrchestrateLicenseMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found bean 'jdbcTemplate' (OnBeanCondition) - - OrchestrateLicenseMetricsConfiguration.InstanceCountsConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.core.service.service.impl.license.count.InstanceCountsConsumer' (OnClassCondition) - - OrchestrateLicenseMetricsConfiguration.InstanceCountsMicrometerConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.core.service.service.impl.license.count.InstanceCountsConsumer', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - OrchestrateLicenseMetricsConfiguration.InstanceCountsMicrometerConfiguration#meterRegistryInstanceCountsConsumer matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnProperty (flowable.metrics.instance-counts-enabled=true) matched (OnPropertyCondition) - - OrchestrateTaskExecutorSupportConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.core.service.service.impl.TaskExecutorFlowableSystemInfoContributor' (OnClassCondition) - - OrchestrateTaskExecutorSupportConfiguration#defaultTaskExecutorFlowableSystemInfoContributor matched: - - @ConditionalOnAvailableSystemInfoProvider no property flowable.core.system-info.providers.default-task-executor.disabled found so enabling by default (OnAvailableSystemInfoProvider) - - @ConditionalOnBean (names: defaultAsyncTaskExecutor; SearchStrategy: all) found bean 'defaultAsyncTaskExecutor' (OnBeanCondition) - - OrchestrateTaskExecutorSupportConfiguration#flowableTaskInvokerTaskExecutorFlowableSystemInfoContributor matched: - - @ConditionalOnAvailableSystemInfoProvider no property flowable.core.system-info.providers.task-invoker-executor.disabled found so enabling by default (OnAvailableSystemInfoProvider) - - @ConditionalOnBean (names: flowableTaskInvokerAsyncTaskExecutor; SearchStrategy: all) found bean 'flowableTaskInvokerAsyncTaskExecutor' (OnBeanCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnBooleanProperty (spring.persistence.exceptiontranslation.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration matched: - - @ConditionalOnClass found required classes 'org.flowable.cmmn.api.listener.PlanItemInstanceLifecycleListener', 'com.flowable.platform.service.action.UserEventActiveStateLeaveListener', 'com.flowable.platform.service.action.CmmnPlatformExposeCreateTaskListener', 'com.flowable.platform.service.action.CmmnPlatformExposeCompleteTaskListener' (OnClassCondition) - - @ConditionalOnBean (types: org.flowable.cmmn.spring.SpringCmmnEngineConfiguration; SearchStrategy: all) found bean 'cmmnEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration#actionEngineCmmnEngineConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: actionEngineCmmnEngineConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration#cmmnPlatformExposeCompleteTaskListener matched: - - @ConditionalOnMissingBean (names: cmmnPlatformExposeCompleteTaskListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration#cmmnPlatformExposeCreateTaskListener matched: - - @ConditionalOnMissingBean (names: cmmnPlatformExposeCreateTaskListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration#completeCaseAuditLogLifecycleListener matched: - - @ConditionalOnMissingBean (names: completeCaseAuditLogLifecycleListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration#completeCaseReactivationActionLifecycleListener matched: - - @ConditionalOnMissingBean (names: completeCaseReactivationActionLifecycleListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration#planItemInstanceEnableStateEnterListener matched: - - @ConditionalOnMissingBean (names: planItemInstanceEnableStateEnterListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration#planItemInstanceEnableStateLeaveListener matched: - - @ConditionalOnMissingBean (names: planItemInstanceEnableStateLeaveListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration#reactivateEventActiveStateLeaveListener matched: - - @ConditionalOnMissingBean (names: reactivateEventActiveStateLeaveListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration#terminateCaseReactivationActionLifecycleListener matched: - - @ConditionalOnMissingBean (names: terminateCaseReactivationActionLifecycleListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration#userEventActiveStateEnterListener matched: - - @ConditionalOnMissingBean (names: userEventActiveStateEnterListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineCmmnConfiguration#userEventActiveStateLeaveListener matched: - - @ConditionalOnMissingBean (names: userEventActiveStateLeaveListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineProcessConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.platform.service.action.BpmnPlatformExposeCreateTaskListener', 'com.flowable.platform.service.action.BpmnPlatformExposeCompleteTaskListener' (OnClassCondition) - - @ConditionalOnBean (types: org.flowable.spring.SpringProcessEngineConfiguration; SearchStrategy: all) found bean 'springProcessEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineProcessConfiguration#actionEngineProcessEngineConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: actionEngineProcessEngineConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineProcessConfiguration#bpmnEndEventCompleteAuditLogListener matched: - - @ConditionalOnMissingBean (names: bpmnEndEventCompleteAuditLogListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineProcessConfiguration#bpmnPlatformExposeCompleteTaskListener matched: - - @ConditionalOnMissingBean (names: bpmnPlatformExposeCompleteTaskListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ActionEngineProcessConfiguration#bpmnPlatformExposeCreateTaskListener matched: - - @ConditionalOnMissingBean (names: bpmnPlatformExposeCreateTaskListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.AgentEngineConfig matched: - - @ConditionalOnClass found required class 'com.flowable.agent.engine.AgentEngine' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.agent.engine.AgentEngineConfiguration; SearchStrategy: all) found bean 'agentEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.PlatformAppAutoDeployConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found bean 'appEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.PlatformAppAutoDeployConfiguration#defaultAppDefinitionDeployer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.common.deployer.DefaultAppAutoDeployer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformAppEngineConfiguration matched: - - @ConditionalOnBean (types: org.flowable.app.api.AppEngineConfigurationApi; SearchStrategy: all) found bean 'appEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.PlatformCaseAutoDeployConfiguration matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngineConfiguration; SearchStrategy: all) found bean 'cmmnEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.PlatformCaseAutoDeployConfiguration#defaultCaseDefinitionDeployer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.common.deployer.DefaultCaseDefinitionAutoDeployer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformCaseAutoDeployConfiguration#platformCmmmnFlowableFunctionDelegatesProvider matched: - - @ConditionalOnMissingBean (names: platformCmmnFlowableFunctionDelegatesProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformCaseAutoDeployConfiguration#platformCmmnIdentityLinkInterceptor matched: - - @ConditionalOnMissingBean (names: platformCmmnIdentityLinkInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformCaseAutoDeployConfiguration#platformCreateHumanTaskInterceptor matched: - - @ConditionalOnMissingBean (names: platformCreateHumanTaskInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformCaseAutoDeployConfiguration#platformEndCaseInstanceInterceptor matched: - - @ConditionalOnMissingBean (names: platformEndCaseInstanceInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformCaseAutoDeployConfiguration#platformStartCaseInstanceInterceptor matched: - - @ConditionalOnMissingBean (names: platformStartCaseInstanceInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformContentConfiguration matched: - - @ConditionalOnBean (types: org.flowable.content.api.ContentEngineConfigurationApi; SearchStrategy: all) found bean 'contentEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.PlatformCoreIdmEngineConfiguration matched: - - @ConditionalOnBean (types: com.flowable.idm.engine.CoreIdmEngineConfiguration; SearchStrategy: all) found bean 'coreIdmEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.PlatformDmnAutoDeployConfiguration matched: - - @ConditionalOnBean (types: org.flowable.dmn.engine.DmnEngineConfiguration; SearchStrategy: all) found bean 'dmnEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.PlatformDmnAutoDeployConfiguration#defaultDmnDefinitionDeployer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.common.deployer.DefaultDmnDefinitionAutoDeployer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformEngineConfig matched: - - @ConditionalOnClass found required class 'com.flowable.platform.engine.PlatformEngine' (OnClassCondition) - - PlatformAutoConfiguration.PlatformEngineConfig#platformExpressionManagerConfigurer matched: - - @ConditionalOnMissingBean (names: platformExpressionManagerConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformEventRegistryAutoDeployConfiguration matched: - - @ConditionalOnBean (types: org.flowable.eventregistry.impl.EventRegistryEngineConfiguration; SearchStrategy: all) found bean 'eventEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.PlatformEventRegistryAutoDeployConfiguration#defaultEventRegistryDefinitionDeployer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.common.deployer.DefaultEventRegistryDefinitionAutoDeployer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformFormAutoDeployConfiguration matched: - - @ConditionalOnBean (types: com.flowable.form.engine.FormEngineConfiguration; SearchStrategy: all) found bean 'platformFormEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.PlatformFormAutoDeployConfiguration#defaultFormDefinitionDeployer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.common.deployer.DefaultFormDefinitionAutoDeployer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformProcessAssignmentRestrictionsConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.service.assignment.BpmnPlatformDisallowAssigneeTaskListener' (OnClassCondition) - - @ConditionalOnBean (types: org.flowable.spring.SpringProcessEngineConfiguration; SearchStrategy: all) found bean 'springProcessEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.PlatformProcessAssignmentRestrictionsConfiguration#bpmnPlatformDisallowAssigneeTaskListener matched: - - @ConditionalOnMissingBean (names: bpmnPlatformDisallowAssigneeTaskListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformProcessAssignmentRestrictionsConfiguration#cmmnPlatformDisallowAssigneeTaskListener matched: - - @ConditionalOnMissingBean (names: cmmnPlatformDisallowAssigneeTaskListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformProcessAutoDeployConfiguration matched: - - @ConditionalOnBean (types: org.flowable.spring.SpringProcessEngineConfiguration; SearchStrategy: all) found bean 'springProcessEngineConfiguration' (OnBeanCondition) - - PlatformAutoConfiguration.PlatformProcessAutoDeployConfiguration#defaultProcessDefinitionDeployer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.common.deployer.DefaultProcessDefinitionAutoDeployer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformProcessAutoDeployConfiguration#platformBpmnFlowableFunctionDelegatesProvider matched: - - @ConditionalOnMissingBean (names: platformBpmnFlowableFunctionDelegatesProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformProcessAutoDeployConfiguration#platformCreateUserTaskInterceptor matched: - - @ConditionalOnMissingBean (names: platformCreateUserTaskInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformProcessAutoDeployConfiguration#platformEndProcessInstanceInterceptor matched: - - @ConditionalOnMissingBean (names: platformEndProcessInstanceInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformProcessAutoDeployConfiguration#platformIdentityLinkInterceptor matched: - - @ConditionalOnMissingBean (names: platformIdentityLinkInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.PlatformProcessAutoDeployConfiguration#platformStartProcessInstanceInterceptor matched: - - @ConditionalOnMissingBean (names: platformStartProcessInstanceInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformAutoConfiguration.ServiceRegistryEngineConfig matched: - - @ConditionalOnClass found required class 'org.flowable.engine.ProcessEngine' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.serviceregistry.engine.ServiceRegistryEngineConfiguration; SearchStrategy: all) found bean 'serviceRegistryEngineConfiguration' (OnBeanCondition) - - PlatformContentEngineServicesAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.content.engine.ContentEngine', 'com.flowable.content.spring.SpringContentEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.content.enabled=true) matched (OnPropertyCondition) - - PlatformContentEngineServicesAutoConfiguration.ContentEngineAutoDeployConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.common.deployer.DefaultDocumentDefinitionAutoDeployer' (OnClassCondition) - - PlatformContentEngineServicesAutoConfiguration.ContentEngineAutoDeployConfiguration#defaultDocumentDefinitionAutoDeployer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.common.deployer.DefaultDocumentDefinitionAutoDeployer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformContentEngineServicesAutoConfiguration.TaskExecutorSystemConfigurerConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.service.configuration.service.ThreadPoolTaskExecutorSystemConfigurationConfigurer' (OnClassCondition) - - PlatformContentEngineServicesAutoConfiguration.TaskExecutorSystemConfigurerConfiguration#contentAsyncExecutorSystemConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: contentAsyncExecutorSystemConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformContentEngineServicesAutoConfiguration.TaskExecutorSystemConfigurerConfiguration#contentAsyncTaskExecutorSystemConfigurationConfigurer matched: - - @ConditionalOnBean (names: contentAsyncTaskExecutor; SearchStrategy: all) found bean 'contentAsyncTaskExecutor'; @ConditionalOnMissingBean (names: contentAsyncTaskExecutorSystemConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformEngineAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.platform.engine.PlatformEngine', 'com.flowable.platform.engine.PlatformEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.platform.enabled=true) matched (OnPropertyCondition) - - PlatformEngineAutoConfiguration#defaultLanguageConfigurationProvider matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.api.configuration.LanguageConfigurationProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformEngineAutoConfiguration#flowableThresholdProvider matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.sandbox.repetition.FlowableThresholdProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformEngineAutoConfiguration#maxCommandDurationProvider matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.sandbox.longrunning.FlowableMaxCommandDurationProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformEngineAutoConfiguration#platformEngineConfiguration matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.PlatformEngineConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformEngineAutoConfiguration.EventRegistryMailConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.platform.engine.impl.eventregistry.mail.MailChannelModelProcessor', 'jakarta.mail.Message', 'org.springframework.integration.mail.ImapMailReceiver', 'org.springframework.integration.dsl.context.IntegrationFlowContext' (OnClassCondition) - - PlatformEngineAutoConfiguration.EventRegistryMailConfiguration#mailChannelModelProcessor matched: - - @ConditionalOnProperty (flowable.eventregistry.mail.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (names: mailChannelModelProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformEngineAutoConfiguration.EventRegistryMailConfiguration#mailListenerContainerFactory matched: - - @ConditionalOnProperty (flowable.eventregistry.mail.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.eventregistry.mail.MailListenerContainerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformEngineAutoConfiguration.PlatformCmmnEngineConfiguration matched: - - @ConditionalOnBean (types: org.flowable.cmmn.spring.SpringCmmnEngineConfiguration; SearchStrategy: all) found bean 'cmmnEngineConfiguration' (OnBeanCondition) - - PlatformEngineAutoConfiguration.PlatformContentEngineConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.content.spring.SpringContentEngineConfiguration' (OnClassCondition) - - PlatformEngineAutoConfiguration.PlatformEngineAppConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found bean 'appEngineConfiguration' (OnBeanCondition) - - PlatformEngineAutoConfiguration.PlatformEngineAppConfiguration#platformAppEngineConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: platformAppEngineConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformEngineAutoConfiguration.PlatformEngineAppConfiguration#platformEngineConfigurator matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.configurator.PlatformEngineConfigurator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformEngineAutoConfiguration.PlatformProcessEngineConfiguration matched: - - @ConditionalOnBean (types: org.flowable.spring.SpringProcessEngineConfiguration; SearchStrategy: all) found bean 'springProcessEngineConfiguration' (OnBeanCondition) - - PlatformEngineServicesAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.platform.engine.PlatformEngine', 'com.flowable.platform.engine.PlatformEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.platform.enabled=true) matched (OnPropertyCondition) - - PlatformEngineServicesAutoConfiguration#defaultThemeAutoImporter matched: - - @ConditionalOnProperty (flowable.platform.default-theme.auto-import=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (names: defaultThemeAutoImporter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformEngineServicesAutoConfiguration#themeAutoImporter matched: - - @ConditionalOnProperty (flowable.platform.theme.auto-import=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (names: themeAutoImporter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformEngineServicesAutoConfiguration.AlreadyInitializedAppEngineConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngine; SearchStrategy: all) found bean 'flowableAppEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.engine.PlatformEngine; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformExpressionsAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.expressions.FlowableExpressionFormatUtils' (OnClassCondition) - - PlatformIndexAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.platform.service.PlatformServiceMarker', 'com.flowable.indexing.api.IndexingService' (OnClassCondition) - - @ConditionalOnProperty (flowable.indexing.enabled=true) matched (OnPropertyCondition) - - PlatformIndexAutoConfiguration#activityIndexingScheduler matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.scheduler.ActivityIndexingScheduler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformIndexAutoConfiguration#caseInstanceIndexingScheduler matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.scheduler.CaseInstanceIndexingScheduler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformIndexAutoConfiguration#contentItemIndexingScheduler matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.scheduler.ContentItemIndexingScheduler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformIndexAutoConfiguration#indexingInstanceSynchronizedEventListener matched: - - @ConditionalOnMissingBean (names: indexingInstanceSynchronizedEventListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformIndexAutoConfiguration#planItemInstanceIndexingScheduler matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.scheduler.PlanItemInstanceIndexingScheduler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformIndexAutoConfiguration#platformReindexService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.index.PlatformReindexService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformIndexAutoConfiguration#processInstanceIndexingScheduler matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.scheduler.ProcessInstanceIndexingScheduler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformIndexAutoConfiguration#taskIndexingScheduler matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.scheduler.TaskIndexingScheduler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformIndexAutoConfiguration#workIndexService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.index.WorkIndexService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformIndexAutoConfiguration#workIndexingScheduler matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.impl.indexing.scheduler.WorkIndexingScheduler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInfoContributorConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.rest.service.api.info.PlatformInfoContributor' (OnClassCondition) - - PlatformInfoContributorConfiguration#buildInfoPlatformInfoContributor matched: - - @ConditionalOnMissingBean (names: buildInfoPlatformInfoContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInfoContributorConfiguration#licensePlatformInfoContributor matched: - - @ConditionalOnBean (types: com.flowable.license.LicenseCheckService; SearchStrategy: all) found bean 'licenseCheckService'; @ConditionalOnMissingBean (names: licensePlatformInfoContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.platform.service.PlatformServiceMarker', 'org.flowable.common.rest.resolver.ContentTypeResolver' (OnClassCondition) - - PlatformInterceptorAutoConfiguration.AppRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.app.rest.AppRestApiInterceptor' (OnClassCondition) - - PlatformInterceptorAutoConfiguration.AppRestApiConfiguration#appRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: com.flowable.app.rest.AppRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.BpmnRestApiConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.rest.service.api.BpmnRestApiInterceptor' (OnClassCondition) - - PlatformInterceptorAutoConfiguration.BpmnRestApiConfiguration#bpmnRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: org.flowable.rest.service.api.BpmnRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.BpmnRestApiConfiguration#formHandlerRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: org.flowable.rest.service.api.FormHandlerRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.CmmnRestApiConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.cmmn.rest.service.api.CmmnRestApiInterceptor' (OnClassCondition) - - PlatformInterceptorAutoConfiguration.CmmnRestApiConfiguration#cmmnFormHandlerRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: org.flowable.cmmn.rest.service.api.CmmnFormHandlerRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.CmmnRestApiConfiguration#cmmnRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: org.flowable.cmmn.rest.service.api.CmmnRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.ContentRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.content.rest.ContentRestApiInterceptor' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.content.engine.ContentEngine; SearchStrategy: all) found bean 'contentEngine' (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.ContentRestApiConfiguration#contentRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: com.flowable.content.rest.ContentRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.CoreRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.core.rest.service.api.CoreRestApiInterceptor' (OnClassCondition) - - PlatformInterceptorAutoConfiguration.CoreRestApiConfiguration#coreRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: com.flowable.core.rest.service.api.CoreRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.DmnRestApiConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.dmn.rest.service.api.DmnRestApiInterceptor' (OnClassCondition) - - PlatformInterceptorAutoConfiguration.DmnRestApiConfiguration#dmnRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: org.flowable.dmn.rest.service.api.DmnRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.EventRegistryRestApiConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.eventregistry.rest.service.api.EventRegistryRestApiInterceptor' (OnClassCondition) - - PlatformInterceptorAutoConfiguration.EventRegistryRestApiConfiguration#eventRegistryRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: org.flowable.eventregistry.rest.service.api.EventRegistryRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.ExternalWorkerJobRestApiConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.external.job.rest.service.api.ExternalWorkerJobRestApiInterceptor' (OnClassCondition) - - PlatformInterceptorAutoConfiguration.ExternalWorkerJobRestApiConfiguration#externalWorkerJobRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: org.flowable.external.job.rest.service.api.ExternalWorkerJobRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.FormRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.form.rest.FormRestApiInterceptor' (OnClassCondition) - - PlatformInterceptorAutoConfiguration.FormRestApiConfiguration#formRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: com.flowable.form.rest.FormRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformInterceptorAutoConfiguration.ReportRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.rest.service.api.reports.PlatformReportRestApiInterceptor' (OnClassCondition) - - PlatformInterceptorAutoConfiguration.ReportRestApiConfiguration#platformReportRestApiInterceptor matched: - - @ConditionalOnMissingBean (types: com.flowable.core.reporting.rest.service.ReportRestApiInterceptor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformLicenseAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.core.service.CoreServiceMarker' (OnClassCondition) - - PlatformRenditionConvertersAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.content.engine.ContentEngine', 'com.flowable.content.spring.SpringContentEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.content.enabled=true) matched (OnPropertyCondition) - - PlatformRenditionConvertersAutoConfiguration.PlatformRenditionContentConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.rendition.converter.PlatformRenditionConverter' (OnClassCondition) - - @ConditionalOnProperty (flowable.content.rendition-converters.enabled=true) matched (OnPropertyCondition) - - PlatformRestApiAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.common.rest.resolver.ContentTypeResolver' (OnClassCondition) - - PlatformRestApiAutoConfiguration.ActionEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.action.rest.service.api.ActionEngineRestMarker' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.action.engine.ActionEngine; SearchStrategy: all) found bean 'actionEngine' (OnBeanCondition) - - PlatformRestApiAutoConfiguration.ActionEngineRestApiConfiguration#actionConfirmationTemplateService matched: - - @ConditionalOnMissingBean (types: com.flowable.action.api.repository.ActionTemplateService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformRestApiAutoConfiguration.ActionEngineRestApiConfiguration#actionTemplateResourceService matched: - - @ConditionalOnMissingBean (types: com.flowable.action.rest.service.api.template.ActionTemplateResourceService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformRestApiAutoConfiguration.AgentEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.agent.rest.service.api.AgentEngineRestMarker' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.agent.engine.AgentEngine; SearchStrategy: all) found bean 'agentEngine' (OnBeanCondition) - - PlatformRestApiAutoConfiguration.DataObjectEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.dataobject.rest.service.api.DataObjectEngineRestMarker' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.dataobject.engine.DataObjectEngine; SearchStrategy: all) found bean 'dataObjectEngine' (OnBeanCondition) - - PlatformRestApiAutoConfiguration.FlowableFormDocumentDefinitionProviderConfiguration matched: - - @ConditionalOnBean (types: com.flowable.content.engine.ContentEngineConfiguration; SearchStrategy: all) found bean 'contentEngineConfiguration' (OnBeanCondition) - - PlatformRestApiAutoConfiguration.FlowableFormDocumentDefinitionProviderConfiguration#flowableFormDocumentDefinitionProvider matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.form.FormDocumentDefinitionProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformRestApiAutoConfiguration.FlowablePlatformExceptionHandlerAdviceConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.engine.PlatformEngine' (OnClassCondition) - - PlatformRestApiAutoConfiguration.FlowablePlatformExceptionHandlerAdviceConfiguration#flowablePlatformExceptionHandlerAdvice matched: - - @ConditionalOnMissingBean (names: flowablePlatformExceptionHandlerAdvice; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformRestApiAutoConfiguration.InspectRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.inspect.rest.service.api.InspectRestMarker' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.inspect.rest.service.InspectInstanceService; SearchStrategy: all) found bean 'inspectInstancesService' (OnBeanCondition) - - PlatformRestApiAutoConfiguration.PlatformRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.rest.service.api.PlatformRestApiMarker' (OnClassCondition) - - PlatformRestApiAutoConfiguration.PlatformRestApiConfiguration#currentUserAvailableApplicationsEnhancer matched: - - @ConditionalOnMissingBean (names: currentUserAvailableApplicationsEnhancer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformRestApiAutoConfiguration.PlatformRestApiConfiguration#currentUserThemeEnhancer matched: - - @ConditionalOnMissingBean (names: currentUserThemeEnhancer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformRestApiAutoConfiguration.ServiceRegistryEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.serviceregistry.rest.service.api.ServiceRegistryEngineRestMarker' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.serviceregistry.engine.ServiceRegistryEngine; SearchStrategy: all) found bean 'serviceRegistryEngine' (OnBeanCondition) - - PlatformRestApiAutoConfiguration.TemplateEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.template.rest.service.api.TemplateEngineRestMarker' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.template.engine.TemplateEngine; SearchStrategy: all) found bean 'flowableTemplateEngine' (OnBeanCondition) - - PlatformServiceAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.service.PlatformServiceMarker' (OnClassCondition) - - PlatformServiceAutoConfiguration#activityResultMapper matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.activity.ActivityResultMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#bpmnFormProvider matched: - - @ConditionalOnBean (types: org.flowable.engine.ProcessEngine,com.flowable.form.engine.FormEngine; SearchStrategy: all) found beans 'coreFormEngine', 'processEngine'; @ConditionalOnMissingBean (names: flowableBpmnFormProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#caseInstanceResultMapper matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.caze.CaseInstanceResultMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#casePageFormProvider matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine,com.flowable.form.engine.FormEngine; SearchStrategy: all) found beans 'coreFormEngine', 'cmmnEngine'; @ConditionalOnMissingBean (names: flowableCasePageFormProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#cmmnRestResponseFactory matched: - - @ConditionalOnMissingBean (types: org.flowable.cmmn.rest.service.api.CmmnRestResponseFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#contentItemResultMapper matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.content.ContentItemResultMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#dashboardComponentQueryResultMapperService matched: - - @ConditionalOnBean (types: com.flowable.platform.engine.PlatformEngine; SearchStrategy: all) found bean 'platformEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.dashboard.resultmapper.DashboardComponentQueryResultMapperService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#dashboardService matched: - - @ConditionalOnBean (types: com.flowable.platform.engine.PlatformEngine; SearchStrategy: all) found bean 'platformEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.dashboard.DashboardService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#dataSourceSystemConfigurationConfigurer matched: - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (names: dataSourceSystemConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#dataTableDataConverter matched: - - @ConditionalOnBean (types: com.flowable.platform.engine.PlatformEngine; SearchStrategy: all) found bean 'platformEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.query.datatable.DataTableDataConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#defaultTaskFilterService matched: - - @ConditionalOnMissingBean (names: defaultTaskFilterService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#defaultWorkFilterService matched: - - @ConditionalOnMissingBean (names: defaultWorkFilterService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#flowableCmmnFormProvider matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine,com.flowable.form.engine.FormEngine; SearchStrategy: all) found beans 'coreFormEngine', 'cmmnEngine'; @ConditionalOnMissingBean (names: flowableCmmnFormProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#flowableTaskFormProvider matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine,org.flowable.engine.ProcessEngine,com.flowable.form.engine.FormEngine; SearchStrategy: all) found beans 'coreFormEngine', 'cmmnEngine', 'processEngine'; @ConditionalOnMissingBean (names: flowableTaskFormProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#formCustomComponentResourceProvider matched: - - @ConditionalOnBean (types: com.flowable.form.engine.FormEngine; SearchStrategy: all) found bean 'coreFormEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.form.customcomponent.FormCustomComponentResourceProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#licenseLoginsReportRunner matched: - - @ConditionalOnBean (types: com.flowable.license.LicenseLoginService; SearchStrategy: all) found bean 'licenseLoginService' (OnBeanCondition) - - PlatformServiceAutoConfiguration#planItemResultMapper matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.planitem.PlanItemResultMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformAppService matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngine; SearchStrategy: all) found bean 'flowableAppEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.app.PlatformAppService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformCaseDefinitionService matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine,com.flowable.form.engine.FormEngine; SearchStrategy: all) found beans 'coreFormEngine', 'cmmnEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.caze.PlatformCaseDefinitionService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformCaseInstanceService matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine,org.flowable.engine.ProcessEngine; SearchStrategy: all) found beans 'cmmnEngine', 'processEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.caze.PlatformCaseInstanceService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformCasePageService matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine,com.flowable.form.engine.FormEngine; SearchStrategy: all) found beans 'coreFormEngine', 'cmmnEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.casepage.PlatformCasePageService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformCasePermissionService matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine; SearchStrategy: all) found bean 'cmmnEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.security.permission.CasePermissionService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformCommentService matched: - - @ConditionalOnBean (types: com.flowable.platform.engine.PlatformEngine; SearchStrategy: all) found bean 'platformEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.comment.PlatformCommentService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformEntityLinkService matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine,org.flowable.engine.ProcessEngine; SearchStrategy: all) found beans 'cmmnEngine', 'processEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.work.PlatformEntityLinkService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformExternalWorkerJobPermissionService matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine,org.flowable.engine.ProcessEngine; SearchStrategy: all) found beans 'cmmnEngine', 'processEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.security.permission.ExternalWorkerJobPermissionService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformFlowableFormDecorator matched: - - @ConditionalOnMissingBean (names: defaultFlowableFormDecorator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformHierarchyService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.hierarchy.InstanceHierarchyService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformPageService matched: - - @ConditionalOnBean (types: com.flowable.form.engine.FormEngine; SearchStrategy: all) found bean 'coreFormEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.page.PlatformPageService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformProcessDefinitionService matched: - - @ConditionalOnBean (types: org.flowable.engine.ProcessEngine,com.flowable.form.engine.FormEngine; SearchStrategy: all) found beans 'coreFormEngine', 'processEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.process.PlatformProcessDefinitionService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformProcessInstanceService matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine,org.flowable.engine.ProcessEngine; SearchStrategy: all) found beans 'cmmnEngine', 'processEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.process.PlatformProcessInstanceService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformProcessPermissionService matched: - - @ConditionalOnBean (types: org.flowable.engine.ProcessEngine; SearchStrategy: all) found bean 'processEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.security.permission.ProcessPermissionService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformRestVariableTransformer matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.variable.PlatformRestVariableTransformer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformSimpleContentTypeMapper matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.content.SimpleContentTypeMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformStandardDataQuerySafeQueryTransformer matched: - - @ConditionalOnBean (types: com.flowable.platform.engine.PlatformEngine; SearchStrategy: all) found bean 'platformEngine'; @ConditionalOnMissingBean (types: com.flowable.indexing.query.builder.standard.StandardDataQuerySafeQueryTransformer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformTaskPermissionService matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine,org.flowable.engine.ProcessEngine; SearchStrategy: all) found beans 'cmmnEngine', 'processEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.security.permission.TaskPermissionService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformTaskService matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine,org.flowable.engine.ProcessEngine,com.flowable.form.engine.FormEngine; SearchStrategy: all) found beans 'coreFormEngine', 'cmmnEngine', 'processEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.task.PlatformTaskService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#platformTranslationService matched: - - @ConditionalOnBean (types: com.flowable.platform.api.translation.TranslationService; SearchStrategy: all) found bean 'translationService'; @ConditionalOnMissingBean (types: com.flowable.platform.service.translation.PlatformTranslationService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#processInstanceResultMapper matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.process.ProcessInstanceResultMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#queryResultToCsvTransformer matched: - - @ConditionalOnBean (types: com.flowable.platform.engine.PlatformEngine; SearchStrategy: all) found bean 'platformEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.dashboard.transformer.QueryResultToCsvTransformerService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#queryService matched: - - @ConditionalOnClass found required class 'com.flowable.indexing.api.IndexingService' (OnClassCondition) - - @ConditionalOnProperty (flowable.indexing.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.flowable.platform.engine.PlatformEngine; SearchStrategy: all) found bean 'platformEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.query.QueryService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#restResponseFactory matched: - - @ConditionalOnMissingBean (types: org.flowable.rest.service.api.RestResponseFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#securityHelper matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.security.SecurityHelper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#standardDataQueryInputValuesTransformer matched: - - @ConditionalOnBean (types: com.flowable.platform.engine.PlatformEngine; SearchStrategy: all) found bean 'platformEngine'; @ConditionalOnMissingBean (types: com.flowable.indexing.query.builder.standard.StandardDataQueryInputValuesTransformer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#standardQueryConfigurationTransformer matched: - - @ConditionalOnBean (types: com.flowable.platform.engine.PlatformEngine; SearchStrategy: all) found bean 'platformEngine'; @ConditionalOnMissingBean (types: com.flowable.indexing.query.builder.standard.StandardDataQueryTransformerService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#taskResultMapper matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.task.TaskResultMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#workDefinitionService matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngine,org.flowable.cmmn.engine.CmmnEngine,org.flowable.engine.ProcessEngine; SearchStrategy: all) found beans 'flowableAppEngine', 'cmmnEngine', 'processEngine'; @ConditionalOnMissingBean (types: com.flowable.platform.service.work.WorkDefinitionService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration#workInstanceResultMapper matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.work.WorkInstanceResultMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.AgentAndServiceRegistryPlatformServiceConfiguration matched: - - @ConditionalOnBean (types: com.flowable.agent.engine.AgentEngine,com.flowable.serviceregistry.engine.ServiceRegistryEngine; SearchStrategy: all) found beans 'agentEngine', 'serviceRegistryEngine' (OnBeanCondition) - - PlatformServiceAutoConfiguration.AgentAndServiceRegistryPlatformServiceConfiguration#platformAndServiceRegistryEngineConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: platformAndServiceRegistryEngineConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.AgentPlatformServiceConfiguration matched: - - @ConditionalOnBean (types: com.flowable.agent.engine.AgentEngine; SearchStrategy: all) found bean 'agentEngine' (OnBeanCondition) - - PlatformServiceAutoConfiguration.AgentPlatformServiceConfiguration#flowableFormAgentInvoker matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.form.invocation.FormAgentInvoker; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.AgentPlatformServiceConfiguration#platformAgentAppEngineConfigurer matched: - - @ConditionalOnMissingBean (names: platformAgentAppEngineConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformCmmnEngineServiceConfiguration matched: - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine; SearchStrategy: all) found bean 'cmmnEngine' (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformCmmnEngineServiceConfiguration#cmmnAsyncExecutorSystemConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: cmmnAsyncExecutorSystemConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformCmmnEngineServiceConfiguration#flowableFormUserEventListenerInvoker matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.form.invocation.FormUserEventListenerInvoker; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformContentServiceConfiguration matched: - - @ConditionalOnBean (types: com.flowable.content.engine.ContentEngine; SearchStrategy: all) found bean 'contentEngine' (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformContentServiceConfiguration#PlatformBigDecimalVariableConverter matched: - - @ConditionalOnMissingBean (names: platformBigDecimalVariableConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformContentServiceConfiguration#PlatformBigIntegerVariableConverter matched: - - @ConditionalOnMissingBean (names: platformBigIntegerVariableConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformContentServiceConfiguration#documentMetadataHandler matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.content.DocumentMetadataHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformContentServiceConfiguration#flowableDefaultContentMediaTypeResolver matched: - - @ConditionalOnProperty (flowable.content.content-type-resolver=default) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: com.flowable.platform.service.content.ContentMediaTypeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformContentServiceConfiguration#folderNameParser matched: - - @ConditionalOnMissingBean (types: com.flowable.core.service.form.FolderNameParser; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformContentServiceConfiguration#platformContentItemService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.content.PlatformContentItemService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformContentServiceConfiguration#platformContentItemVariableConverter matched: - - @ConditionalOnMissingBean (names: platformContentItemVariableConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformContentServiceConfiguration#platformFolderItemService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.content.PlatformFolderItemService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformDataObjectServiceConfiguration matched: - - @ConditionalOnBean (types: com.flowable.dataobject.engine.DataObjectEngine; SearchStrategy: all) found bean 'dataObjectEngine' (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformDataObjectServiceConfiguration#dataObjectIndexVariableType matched: - - @ConditionalOnMissingBean (names: dataObjectIndexVariableType; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformDataObjectServiceConfiguration#dataObjectInstanceVariableContainerVariableConverter matched: - - @ConditionalOnMissingBean (names: dataObjectInstanceVariableContainerVariableConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformDataObjectServiceConfiguration#detachedDataObjectIndexVariableType matched: - - @ConditionalOnMissingBean (names: detachedDataObjectIndexVariableType; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformProcessEngineServiceConfiguration matched: - - @ConditionalOnBean (types: org.flowable.engine.ProcessEngine; SearchStrategy: all) found bean 'processEngine' (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformProcessEngineServiceConfiguration#asyncHistoryExecutorSystemConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: asyncHistoryExecutorSystemConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformProcessEngineServiceConfiguration#bpmnAsyncExecutorSystemConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: bpmnAsyncExecutorSystemConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformServiceEngineConfiguration matched: - - @ConditionalOnBean (types: com.flowable.platform.engine.PlatformEngine; SearchStrategy: all) found bean 'platformEngine' (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformServiceEngineConfiguration#dataDictionaryComplexIndexVariableType matched: - - @ConditionalOnMissingBean (names: dataDictionaryComplexIndexVariableType; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformServiceEngineConfiguration#dataDictionaryVariableRestConverter matched: - - @ConditionalOnMissingBean (names: dataDictionaryVariableRestConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformServiceEngineConfiguration#systemConfigurationApplierService matched: - - @ConditionalOnMissingBean (names: systemConfigurationApplierService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformServiceEngineConfiguration#systemConfigurationFlowableSystemInfoContributor matched: - - @ConditionalOnAvailableSystemInfoProvider no property flowable.core.system-info.providers.system-configurations.disabled found so enabling by default (OnAvailableSystemInfoProvider) - - PlatformServiceAutoConfiguration.PlatformServiceIndexingConfiguration matched: - - @ConditionalOnBean (types: com.flowable.indexing.SearchService; SearchStrategy: all) found bean 'searchService' (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformServiceRegistryEngineConfiguration matched: - - @ConditionalOnBean (types: com.flowable.serviceregistry.engine.ServiceRegistryEngine; SearchStrategy: all) found bean 'serviceRegistryEngine' (OnBeanCondition) - - PlatformServiceAutoConfiguration.PlatformServiceRegistryEngineConfiguration#flowableFormServiceInvoker matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.service.form.invocation.FormServiceInvoker; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PolicyEngineAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.policy.engine.PolicyEngine', 'com.flowable.policy.engine.PolicyEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.policy.enabled=true) matched (OnPropertyCondition) - - PolicyEngineAutoConfiguration#policyEngineConfiguration matched: - - @ConditionalOnMissingBean (types: com.flowable.policy.engine.PolicyEngineConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PolicyEngineAutoConfiguration.PolicyEngineAppConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found bean 'appEngineConfiguration' (OnBeanCondition) - - PolicyEngineAutoConfiguration.PolicyEngineAppConfiguration#policyAppEngineConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: policyAppEngineConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PolicyEngineAutoConfiguration.PolicyEngineAppConfiguration#policyEngineConfigurator matched: - - @ConditionalOnMissingBean (types: com.flowable.policy.engine.configurator.PolicyEngineConfigurator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PolicyEngineServicesAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.policy.engine.PolicyEngine', 'com.flowable.policy.engine.PolicyEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.policy.enabled=true) matched (OnPropertyCondition) - - PolicyEngineServicesAutoConfiguration.AlreadyInitializedAppEngineConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngine; SearchStrategy: all) found bean 'flowableAppEngine'; @ConditionalOnMissingBean (types: com.flowable.policy.engine.PolicyEngine; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.flowable.engine.ProcessEngine', 'org.flowable.spring.SpringProcessEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.process.enabled=true) matched (OnPropertyCondition) - - ProcessEngineAutoConfiguration#asyncHistoryExecutorStarter matched: - - @ConditionalOnProperty (flowable.process.async-history.enable) matched (OnPropertyCondition) - - ProcessEngineAutoConfiguration#flowableProcessValidator matched: - - @ConditionalOnMissingBean (types: org.flowable.validation.ProcessValidator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineAutoConfiguration#processAsyncExecutor matched: - - @ConditionalOnMissingBean (names: processAsyncExecutor,platformAsyncExecutor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineAutoConfiguration#springProcessEngineConfiguration matched: - - @ConditionalOnMissingBean (types: org.flowable.spring.SpringProcessEngineConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineAutoConfiguration.ProcessEngineAppConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found bean 'appEngineConfiguration' (OnBeanCondition) - - ProcessEngineAutoConfiguration.ProcessEngineAppConfiguration#processAppEngineConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: processAppEngineConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineAutoConfiguration.ProcessEngineAppConfiguration#processEngineConfigurator matched: - - @ConditionalOnMissingBean (types: org.flowable.engine.configurator.ProcessEngineConfigurator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineServicesAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.flowable.engine.ProcessEngine', 'org.flowable.spring.SpringProcessEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.process.enabled=true) matched (OnPropertyCondition) - - ProcessEngineServicesAutoConfiguration#dynamicBpmnServiceBean matched: - - @ConditionalOnMissingBean (types: org.flowable.engine.DynamicBpmnService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineServicesAutoConfiguration#formServiceBean matched: - - @ConditionalOnMissingBean (types: org.flowable.engine.FormService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineServicesAutoConfiguration#historyServiceBean matched: - - @ConditionalOnMissingBean (types: org.flowable.engine.HistoryService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineServicesAutoConfiguration#identityServiceBean matched: - - @ConditionalOnMissingBean (types: org.flowable.engine.IdentityService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineServicesAutoConfiguration#managementServiceBean matched: - - @ConditionalOnMissingBean (types: org.flowable.engine.ManagementService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineServicesAutoConfiguration#processMigrationServiceBean matched: - - @ConditionalOnMissingBean (types: org.flowable.engine.ProcessMigrationService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineServicesAutoConfiguration#repositoryServiceBean matched: - - @ConditionalOnMissingBean (types: org.flowable.engine.RepositoryService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineServicesAutoConfiguration#runtimeServiceBean matched: - - @ConditionalOnMissingBean (types: org.flowable.engine.RuntimeService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineServicesAutoConfiguration#taskServiceBean matched: - - @ConditionalOnMissingBean (types: org.flowable.engine.TaskService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessEngineServicesAutoConfiguration.AlreadyInitializedAppEngineConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngine; SearchStrategy: all) found bean 'flowableAppEngine'; @ConditionalOnMissingBean (types: org.flowable.engine.ProcessEngine; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessFunctionDelegatesAutoConfiguration#propertyConfigurationService matched: - - @ConditionalOnBean (types: org.springframework.core.env.PropertyResolver; SearchStrategy: all) found bean 'environment' (OnBeanCondition) - - ProcessFunctionDelegatesAutoConfiguration.PlatformCommonFunctionDelegatesConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.common.el.FlowableListOfFunctionDelegate' (OnClassCondition) - - ProcessFunctionDelegatesAutoConfiguration.PlatformCommonFunctionDelegatesConfiguration#platformCommonFlowableFunctionDelegatesProvider matched: - - @ConditionalOnMissingBean (names: platformCommonFlowableFunctionDelegatesProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessFunctionDelegatesAutoConfiguration.PlatformEngineFunctionDelegatesConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.engine.impl.sequence.el.SequenceNextFormattedValueFunctionDelegate' (OnClassCondition) - - ProcessFunctionDelegatesAutoConfiguration.PlatformEngineFunctionDelegatesConfiguration#platformEngineFunctionDelegatesProvider matched: - - @ConditionalOnMissingBean (names: platformEngineFunctionDelegatesProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProcessFunctionDelegatesAutoConfiguration.PlatformIdmFunctionDelegatesConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.idm.engine.impl.el.FindPlatformUserFunctionDelegate' (OnClassCondition) - - ProcessFunctionDelegatesAutoConfiguration.PlatformIdmFunctionDelegatesConfiguration#platformIdmFlowableFunctionDelegatesProvider matched: - - @ConditionalOnMissingBean (names: platformIdmFlowableFunctionDelegatesProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ProjectAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.autoconfigure.project.ProjectSchemaManager' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ReactiveHttpClientAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.http.client.reactive.ClientHttpConnector', 'reactor.core.publisher.Mono' (OnClassCondition) - - Detected ClientHttpConnectorBuilder (ConditionalOnClientHttpConnectorBuilderDetection) - - ReactiveHttpClientAutoConfiguration#clientHttpConnector matched: - - @ConditionalOnMissingBean (types: org.springframework.http.client.reactive.ClientHttpConnector; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ReactiveHttpClientAutoConfiguration#clientHttpConnectorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.http.client.reactive.ClientHttpConnectorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ReactiveWebSecurityAutoConfiguration matched: - - @ConditionalOnClass found required classes 'reactor.core.publisher.Flux', 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity', 'org.springframework.security.web.server.WebFilterChainProxy', 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - RequestLoggingAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - ResourceHelperAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.template.engine.TemplateEngine', 'com.flowable.template.engine.TemplateEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.template.enabled=true) matched (OnPropertyCondition) - - ResourceHelperAutoConfiguration#resourceHelper matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.common.resource.ResourceHelper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestApiAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.common.rest.resolver.ContentTypeResolver' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - RestApiAutoConfiguration.AppEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.app.rest.AppRestUrls' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngine; SearchStrategy: all) found bean 'flowableAppEngine' (OnBeanCondition) - - RestApiAutoConfiguration.CmmnEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.cmmn.rest.service.api.CmmnRestUrls' (OnClassCondition) - - @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine; SearchStrategy: all) found bean 'cmmnEngine' (OnBeanCondition) - - RestApiAutoConfiguration.CommonRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.core.common.rest.response.ResponseEntityHelper' (OnClassCondition) - - RestApiAutoConfiguration.CommonRestApiConfiguration#responseEntityHelper matched: - - @ConditionalOnMissingBean (types: com.flowable.core.common.rest.response.ResponseEntityHelper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestApiAutoConfiguration.ContentEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.content.rest.ContentRestUrls' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.content.engine.ContentEngine; SearchStrategy: all) found bean 'contentEngine' (OnBeanCondition) - - RestApiAutoConfiguration.CoreRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.core.rest.service.api.CoreRestApiMarker' (OnClassCondition) - - RestApiAutoConfiguration.CoreRestApiConfiguration#coreRestProcessEngineConfigurer matched: - - @ConditionalOnMissingBean (names: coreRestProcessEngineConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestApiAutoConfiguration.DmnEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.dmn.rest.service.api.DmnRestUrls' (OnClassCondition) - - @ConditionalOnBean (types: org.flowable.dmn.engine.DmnEngine; SearchStrategy: all) found bean 'dmnEngine' (OnBeanCondition) - - RestApiAutoConfiguration.EventRegistryRestApiConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.eventregistry.rest.service.api.EventRestUrls' (OnClassCondition) - - @ConditionalOnBean (types: org.flowable.eventregistry.impl.EventRegistryEngine; SearchStrategy: all) found bean 'eventRegistryEngine' (OnBeanCondition) - - RestApiAutoConfiguration.ExternalJobRestApiConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.external.job.rest.service.api.ExternalJobRestUrls' (OnClassCondition) - - AnyNestedCondition 2 matched 0 did not; NestedCondition on RestApiAutoConfiguration.ExternalJobRestApiConfiguration.ExternalJobRestCondition.CmmnEngineBeanCondition @ConditionalOnBean (types: org.flowable.cmmn.engine.CmmnEngine; SearchStrategy: all) found bean 'cmmnEngine'; NestedCondition on RestApiAutoConfiguration.ExternalJobRestApiConfiguration.ExternalJobRestCondition.ProcessEngineBeanCondition @ConditionalOnBean (types: org.flowable.engine.ProcessEngine; SearchStrategy: all) found bean 'processEngine' (RestApiAutoConfiguration.ExternalJobRestApiConfiguration.ExternalJobRestCondition) - - RestApiAutoConfiguration.FormEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.form.rest.FormRestUrls' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.form.engine.FormEngine; SearchStrategy: all) found bean 'coreFormEngine' (OnBeanCondition) - - RestApiAutoConfiguration.IdmEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.idm.rest.service.api.CoreIdmEngineRestMarker' (OnClassCondition) - - @ConditionalOnBean (types: com.flowable.idm.engine.CoreIdmEngine; SearchStrategy: all) found bean 'coreIdmEngine' (OnBeanCondition) - - RestApiAutoConfiguration.ProcessEngineRestApiConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.rest.service.api.RestUrls' (OnClassCondition) - - @ConditionalOnBean (types: org.flowable.engine.ProcessEngine; SearchStrategy: all) found bean 'processEngine' (OnBeanCondition) - - RestApiAutoConfiguration.ReportingRestApiConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.core.reporting.rest.service.CoreReportingRestMarker' (OnClassCondition) - - SalesforceAgentforceAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.agent.engine.impl.model.external.salesforce.client.SalesforceAgentforceClient' (OnClassCondition) - - SalesforceAgentforceAutoConfiguration#salesforceAgentforceClient matched: - - @ConditionalOnMissingBean (types: com.flowable.agent.engine.impl.model.external.salesforce.client.SalesforceAgentforceClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SandboxScriptingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.flowable.common.engine.impl.scripting.FlowableScriptEngine' (OnClassCondition) - - ScheduledTasksObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - SecurityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityAutoConfiguration#authenticationEventPublisher matched: - - @ConditionalOnMissingBean (types: org.springframework.security.authentication.AuthenticationEventPublisher; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityFilterAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.security.web.context.AbstractSecurityWebApplicationInitializer', 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - SecurityFilterAutoConfiguration#securityFilterChainRegistration matched: - - @ConditionalOnBean (names: springSecurityFilterChain; SearchStrategy: all) found bean 'springSecurityFilterChain' (OnBeanCondition) - - SecurityHttpBasicConfiguration matched: - - @ConditionalOnProperty (application.security.type=basic) matched (OnPropertyCondition) - - SecurityRequestMatchersManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - SecurityRequestMatchersManagementContextConfiguration.MvcRequestMatcherConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.webmvc.autoconfigure.DispatcherServletPath; SearchStrategy: all) found bean 'dispatcherServletRegistration' (OnBeanCondition) - - SecurityRequestMatchersManagementContextConfiguration.MvcRequestMatcherConfiguration#requestMatcherProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.security.autoconfigure.actuate.web.servlet.RequestMatcherProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ServiceRegistryEngineAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.serviceregistry.engine.ServiceRegistryEngine', 'com.flowable.serviceregistry.engine.ServiceRegistryEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.service-registry.enabled=true) matched (OnPropertyCondition) - - ServiceRegistryEngineAutoConfiguration#serviceRegistryEngineConfiguration matched: - - @ConditionalOnMissingBean (types: com.flowable.serviceregistry.engine.ServiceRegistryEngineConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ServiceRegistryEngineAutoConfiguration#serviceRegistryValidator matched: - - @ConditionalOnMissingBean (types: com.flowable.serviceregistry.api.validation.ServiceRegistryValidator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ServiceRegistryEngineAutoConfiguration.ServiceRegistryEngineAppConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found bean 'appEngineConfiguration' (OnBeanCondition) - - ServiceRegistryEngineAutoConfiguration.ServiceRegistryEngineAppConfiguration#serviceRegistryAppEngineConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: serviceRegistryAppEngineConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ServiceRegistryEngineAutoConfiguration.ServiceRegistryEngineAppConfiguration#serviceRegistryEngineConfigurator matched: - - @ConditionalOnMissingBean (types: com.flowable.serviceregistry.engine.impl.deployer.ServiceRegistryEngineConfigurator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ServiceRegistryEngineServicesAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.serviceregistry.engine.ServiceRegistryEngine', 'com.flowable.serviceregistry.engine.ServiceRegistryEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.service-registry.enabled=true) matched (OnPropertyCondition) - - ServiceRegistryEngineServicesAutoConfiguration.AlreadyInitializedAppEngineConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngine; SearchStrategy: all) found bean 'flowableAppEngine'; @ConditionalOnMissingBean (types: com.flowable.serviceregistry.engine.ServiceRegistryEngine; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebSecurityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebSecurityAutoConfiguration.PathPatternRequestMatcherBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.boot.webmvc.autoconfigure.DispatcherServletPath' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.webmvc.autoconfigure.DispatcherServletPath; SearchStrategy: all) found bean 'dispatcherServletRegistration' (OnBeanCondition) - - ServletWebSecurityAutoConfiguration.PathPatternRequestMatcherBuilderConfiguration#pathPatternRequestMatcherBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.security.web.servlet.util.matcher.PathPatternRequestMatcher$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SslHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.boot.health.contributor.Health' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - SslHealthContributorAutoConfiguration#sslHealthIndicator matched: - - @ConditionalOnMissingBean (names: sslHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SslHealthContributorAutoConfiguration#sslInfo matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.info.SslInfo; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SslMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found beans 'sslBundleRegistry', 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.micrometer.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SubFolderItemMigrationConfiguration matched: - - @ConditionalOnBean (types: com.flowable.content.engine.ContentEngineConfiguration,com.flowable.platform.engine.PlatformEngineConfiguration; SearchStrategy: all) found beans 'contentEngineConfiguration', 'platformEngineConfiguration' (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.micrometer.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskInvokerConfiguration matched: - - AnyNestedCondition 2 matched 0 did not; NestedCondition on TaskExecutorConfigurations.OrchestrateTaskInvokerCondition.CmmnEngineCondition found matching nested conditions @ConditionalOnClass found required classes 'org.flowable.cmmn.engine.CmmnEngine', 'org.flowable.cmmn.spring.SpringCmmnEngineConfiguration', @ConditionalOnProperty (flowable.cmmn.enabled=true) matched; NestedCondition on TaskExecutorConfigurations.OrchestrateTaskInvokerCondition.ProcessEngineCondition found matching nested conditions @ConditionalOnClass found required classes 'org.flowable.engine.ProcessEngine', 'org.flowable.spring.SpringProcessEngineConfiguration', @ConditionalOnProperty (flowable.process.enabled=true) matched (TaskExecutorConfigurations.OrchestrateTaskInvokerCondition) - - TaskExecutorConfigurations.TaskInvokerConfiguration#flowableTaskInvokerAsyncTaskExecutor matched: - - @ConditionalOnMissingBean (names: flowableTaskInvokerAsyncTaskExecutor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskInvokerConfiguration#flowableTaskInvokerFlowableTaskExecutor matched: - - @ConditionalOnMissingBean (names: flowableTaskInvokerFlowableTaskExecutor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'contentAsyncTaskExecutor', 'platformAsyncHistoryTaskExecutor', 'platformAsyncTaskExecutor', 'flowableTaskInvokerAsyncTaskExecutor', 'simpleMeterRegistry', 'taskScheduler', 'defaultAsyncTaskExecutor', 'agentAsyncTaskExecutor' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#auditLogService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.AuditLogService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#cmmnInitVariablesService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.CmmnInitVariablesService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#convertDocumentToPDFService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.document.ConvertDocumentToPDFService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#createDocumentService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.document.CreateDocumentService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#excelDocumentConverter matched: - - @ConditionalOnClass found required class 'com.aspose.cells.Workbook' (OnClassCondition) - - TasksAutoConfiguration#flowablePlatformCaseValidatorSet matched: - - @ConditionalOnMissingBean (names: flowablePlatformCaseValidatorSet; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#flowablePlatformServiceTaskValidator matched: - - @ConditionalOnMissingBean (names: flowablePlatformServiceTaskValidator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#flowablePlatformTemplateService matched: - - @ConditionalOnMissingBean (names: flowablePlatformTemplateService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#flowablePlatformValidatorSet matched: - - @ConditionalOnMissingBean (names: flowablePlatformValidatorSet; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#generateDocumentService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.document.GenerateDocumentService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#housekeepingServiceTask matched: - - @ConditionalOnMissingBean (names: housekeepingServiceTask; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#imageDocumentConverter matched: - - @ConditionalOnClass found required class 'com.aspose.imaging.Image' (OnClassCondition) - - TasksAutoConfiguration#initVariablesService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.InitVariablesService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#mergeDocumentService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.document.MergeDocumentService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#processInitVariablesService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.ProcessInitVariablesService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#serviceRegistryService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.ServiceRegistryService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration#textDocumentConverter matched: - - @ConditionalOnClass found required class 'com.aspose.words.Document' (OnClassCondition) - - TasksAutoConfiguration.AgentTaskConfiguration matched: - - @ConditionalOnBean (types: com.flowable.agent.api.AgentEngineConfigurationApi; SearchStrategy: all) found bean 'agentEngineConfiguration' (OnBeanCondition) - - TasksAutoConfiguration.AgentTaskConfiguration#agentService matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.agent.AgentService; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration.AgentTaskConfiguration#triggerIntentEvaluationServiceTask matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.agent.TriggerIntentEvaluationServiceTask; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration.DataObjectTaskConfiguration matched: - - @ConditionalOnBean (types: com.flowable.dataobject.api.runtime.DataObjectRuntimeService; SearchStrategy: all) found bean 'dataObjectRuntimeService' (OnBeanCondition) - - TasksAutoConfiguration.DataObjectTaskConfiguration#dataObjectServiceTask matched: - - @ConditionalOnMissingBean (types: com.flowable.platform.tasks.dataobject.DataObjectServiceTask; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TasksAutoConfiguration.PlatformTaskConfiguration matched: - - @ConditionalOnBean (types: com.flowable.platform.api.sequence.SequenceService; SearchStrategy: all) found bean 'sequenceService' (OnBeanCondition) - - TasksAutoConfiguration.PlatformTaskConfiguration#generateSequenceServiceTask matched: - - @ConditionalOnMissingBean (names: generateSequenceServiceTask; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TemplateEngineAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.template.engine.TemplateEngine', 'com.flowable.template.engine.TemplateEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.template.enabled=true) matched (OnPropertyCondition) - - TemplateEngineAutoConfiguration#templateEngineConfiguration matched: - - @ConditionalOnMissingBean (types: com.flowable.template.engine.TemplateEngineConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TemplateEngineAutoConfiguration.TemplateEngineAppConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found bean 'appEngineConfiguration' (OnBeanCondition) - - TemplateEngineAutoConfiguration.TemplateEngineAppConfiguration#templateAppEngineConfigurationConfigurer matched: - - @ConditionalOnMissingBean (names: templateAppEngineConfigurationConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TemplateEngineAutoConfiguration.TemplateEngineAppConfiguration#templateEngineConfigurator matched: - - @ConditionalOnMissingBean (types: com.flowable.template.engine.configurator.TemplateEngineConfigurator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TemplateEngineConfigurations.DefaultTemplateEngineConfiguration#templateEngine matched: - - @ConditionalOnMissingBean (types: org.thymeleaf.spring6.ISpringTemplateEngine; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TemplateEngineServicesAutoConfiguration matched: - - @ConditionalOnClass found required classes 'com.flowable.template.engine.TemplateEngine', 'com.flowable.template.engine.TemplateEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.template.enabled=true) matched (OnPropertyCondition) - - TemplateEngineServicesAutoConfiguration.AlreadyInitializedAppEngineConfiguration matched: - - @ConditionalOnBean (types: com.flowable.app.engine.AppEngine; SearchStrategy: all) found bean 'flowableAppEngine'; @ConditionalOnMissingBean (types: com.flowable.template.engine.TemplateEngine; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TenantBootstrapAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.flowable.platform.tenant.TenantSetupServiceImpl' (OnClassCondition) - - @ConditionalOnProperty (flowable.platform.idm.service-type=default) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper,com.flowable.core.idm.api.PlatformIdentityService; SearchStrategy: all) found beans 'platformIdentityService', 'jackson2ObjectMapper' (OnBeanCondition) - - TenantBootstrapAutoConfiguration.TenantBootstrapContentConfiguration matched: - - @ConditionalOnBean (types: org.flowable.content.api.ContentService; SearchStrategy: all) found bean 'contentService' (OnBeanCondition) - - ThymeleafAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.thymeleaf.templatemode.TemplateMode', 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - ThymeleafAutoConfiguration.DefaultTemplateResolverConfiguration matched: - - @ConditionalOnMissingBean (names: defaultTemplateResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThymeleafAutoConfiguration.ThymeleafWebMvcConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ThymeleafAutoConfiguration.ThymeleafWebMvcConfiguration#resourceUrlEncodingFilter matched: - - @ConditionalOnEnabledResourceChain enabled (OnEnabledResourceChainCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.resource.ResourceUrlEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThymeleafAutoConfiguration.ThymeleafWebMvcConfiguration.ThymeleafViewResolverConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.view.AbstractCachingViewResolver' (OnClassCondition) - - ThymeleafAutoConfiguration.ThymeleafWebMvcConfiguration.ThymeleafViewResolverConfiguration#thymeleafViewResolver matched: - - @ConditionalOnMissingBean (names: thymeleafViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.tomcat.metrics.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatServletWebServerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.ServletRequest', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol', 'org.springframework.boot.tomcat.servlet.TomcatServletWebServerFactory' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - TomcatServletWebServerAutoConfiguration#tomcatServletWebServerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.server.servlet.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnBooleanProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.transaction.autoconfigure.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransformerEventRegistryAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.flowable.eventregistry.impl.EventRegistryEngine', 'org.flowable.eventregistry.spring.SpringEventRegistryEngineConfiguration' (OnClassCondition) - - @ConditionalOnProperty (flowable.eventregistry.enabled=true) matched (OnPropertyCondition) - - WebClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientAutoConfiguration#webClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.reactive.function.client.WebClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebClientAutoConfiguration#webClientHttpConnectorCustomizer matched: - - @ConditionalOnBean (types: org.springframework.http.client.reactive.ClientHttpConnector; SearchStrategy: all) found bean 'clientHttpConnector' (OnBeanCondition) - - WebClientAutoConfiguration#webClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.webclient.autoconfigure.WebClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebClientAutoConfiguration.WebClientCodecsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.http.codec.CodecCustomizer; SearchStrategy: all) found beans 'jacksonCodecCustomizer', 'defaultCodecCustomizer' (OnBeanCondition) - - WebClientAutoConfiguration.WebClientCodecsConfiguration#exchangeStrategiesCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.webclient.autoconfigure.WebClientCodecCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebClientObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.reactive.function.client.WebClient', 'org.springframework.boot.webclient.observation.ObservationWebClientCustomizer', 'io.micrometer.observation.ObservationRegistry', 'org.springframework.boot.micrometer.observation.autoconfigure.ObservationProperties' (OnClassCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnBooleanProperty (spring.mvc.formcontent.filter.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#viewNameTranslator matched: - - @ConditionalOnMissingBean (names: viewNameTranslator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration matched: - - @ConditionalOnEnabledResourceChain enabled (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.webmvc.actuate.endpoint.web.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointJackson2ObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointJackson2ObjectMapper; SearchStrategy: all) found bean 'jackson2EndpointJsonMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointJsonMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointJsonMapper; SearchStrategy: all) found bean 'endpointJsonMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.webmvc.actuate.endpoint.web.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration.HealthConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.boot.health.actuate.endpoint.HealthEndpoint' (OnClassCondition) - - WebMvcHealthEndpointExtensionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.boot.health.actuate.endpoint.HealthEndpoint' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - @ConditionalOnBean (types: org.springframework.boot.health.actuate.endpoint.HealthEndpoint,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier,org.springframework.boot.health.actuate.endpoint.HealthEndpointGroups; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'healthEndpoint', 'healthEndpointGroups' (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation', 'org.springframework.boot.micrometer.observation.autoconfigure.ObservationProperties' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.springframework.boot.micrometer.metrics.autoconfigure.MetricsProperties' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - -Negative matches: ------------------ - - AbbyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.platform.abbyy.FlowableAbbyyService' (OnClassCondition) - - ActionEngineAutoConfiguration.ActionEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - ActionEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.action.engine.ActionEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'com.flowable.action.engine.ActionEngine' actionEngine (OnBeanCondition) - - AgentEngineAutoConfiguration.AgentEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - AgentEngineAutoConfiguration.FlowableBedrockAgentConfiguration: - Did not match: - - @ConditionalOnBean (types: com.flowable.agent.engine.external.aws.client.AwsBedrockClient; SearchStrategy: all) did not find any beans of type com.flowable.agent.engine.external.aws.client.AwsBedrockClient (OnBeanCondition) - - AgentEngineServicesAutoConfiguration.AlreadyInitializedProcessEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.agent.engine.AgentEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'com.flowable.agent.engine.AgentEngine' agentEngine (OnBeanCondition) - - AgentMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry,com.flowable.agent.engine.AgentEngineConfiguration; SearchStrategy: all) did not find any beans of type io.micrometer.core.instrument.MeterRegistry (OnBeanCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnBooleanProperty (management.auditevents.enabled=true) matched (OnPropertyCondition) - - AuditEngineAutoConfiguration.AuditEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - AuditEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.audit.engine.AuditEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'com.flowable.audit.engine.AuditEngine' auditEngine (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnBooleanProperty (management.health.livenessstate.enabled=true) did not find property 'management.health.livenessstate.enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnBooleanProperty (management.health.readinessstate.enabled=true) did not find property 'management.health.readinessstate.enabled' (OnPropertyCondition) - - AwsBedrockAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'software.amazon.awssdk.services.bedrockagentruntime.BedrockAgentRuntimeAsyncClient' (OnClassCondition) - - BeansEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - CmmnEngineAutoConfiguration.CmmnEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - CmmnEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: org.flowable.cmmn.engine.CmmnEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'org.flowable.cmmn.engine.CmmnEngine' cmmnEngine (OnBeanCondition) - - CmmnEngineServicesAutoConfiguration.StandaloneEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: org.flowable.cmmn.engine.CmmnEngine,org.flowable.engine.ProcessEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'org.flowable.engine.ProcessEngine' processEngine (OnBeanCondition) - - CodecsAutoConfiguration.Jackson2JsonCodecConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on CodecsAutoConfiguration.NoJacksonOrJackson2Preferred.Jackson2Preferred @ConditionalOnProperty (spring.http.codecs.preferred-json-mapper=jackson2) did not find property 'spring.http.codecs.preferred-json-mapper'; NestedCondition on CodecsAutoConfiguration.NoJacksonOrJackson2Preferred.NoJackson @ConditionalOnMissingClass found unwanted class 'tools.jackson.databind.json.JsonMapper' (CodecsAutoConfiguration.NoJacksonOrJackson2Preferred) - Matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - CodecsAutoConfiguration.KotlinxSerializationJsonCodecConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'kotlinx.serialization.json.Json' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConditionsReportEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - ContentEngineAutoConfiguration#coreRenditionConvertersConfigurer: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.core.rendition.converter.CoreRenditionConverter' (OnClassCondition) - - ContentEngineAutoConfiguration#flowableDatabaseContentStorage: - Did not match: - - @ConditionalOnProperty (flowable.content.storage.type=db) did not find property 'type' (OnPropertyCondition) - - ContentEngineAutoConfiguration.ContentEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - ContentEngineAutoConfiguration.FlowableContentStorageAwsS3Configuration: - Did not match: - - @ConditionalOnProperty (flowable.content.storage.type=aws-s3) did not find property 'type' (OnPropertyCondition) - - ContentEngineAutoConfiguration.FlowableContentStorageAzureBlobStorageConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.content.storage.type=azure-blob) did not find property 'type' (OnPropertyCondition) - - ContentEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.content.engine.ContentEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'com.flowable.content.engine.ContentEngine' contentEngine (OnBeanCondition) - - ContentEngineServicesAutoConfiguration.StandaloneConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.content.engine.ContentEngine,org.flowable.engine.ProcessEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'org.flowable.engine.ProcessEngine' processEngine (OnBeanCondition) - - CoreInterceptorAutoConfiguration.BpmnRestApiConfiguration#formHandlerRestApiInterceptor: - Did not match: - - @ConditionalOnMissingBean (types: org.flowable.rest.service.api.FormHandlerRestApiInterceptor; SearchStrategy: all) found beans of type 'org.flowable.rest.service.api.FormHandlerRestApiInterceptor' formHandlerRestApiInterceptor (OnBeanCondition) - - CoreInterceptorAutoConfiguration.CmmnRestApiConfiguration#cmmnFormHandlerRestApiInterceptor: - Did not match: - - @ConditionalOnMissingBean (types: org.flowable.cmmn.rest.service.api.CmmnFormHandlerRestApiInterceptor; SearchStrategy: all) found beans of type 'org.flowable.cmmn.rest.service.api.CmmnFormHandlerRestApiInterceptor' cmmnFormHandlerRestApiInterceptor (OnBeanCondition) - - CoreServiceAutoConfiguration#coreFlowableFormDecorator: - Did not match: - - @ConditionalOnMissingBean (names: defaultFlowableFormDecorator; SearchStrategy: all) found beans named defaultFlowableFormDecorator (OnBeanCondition) - - CoreServiceAutoConfiguration.ElasticMeterRegistryReportConfiguration: - Did not match: - - @ConditionalOnBean (types: io.micrometer.elastic.ElasticConfig; SearchStrategy: all) did not find any beans of type io.micrometer.elastic.ElasticConfig (OnBeanCondition) - - DataObjectBootstrapAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper,com.flowable.dataobject.api.repository.DataObjectRepositoryService,com.flowable.serviceregistry.api.repository.ServiceRegistryRepositoryService; SearchStrategy: all) did not find any beans of type com.fasterxml.jackson.databind.ObjectMapper (OnBeanCondition) - - DataObjectEngineAutoConfiguration.DataObjectEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - DataObjectEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.dataobject.engine.DataObjectEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.dataobject.engine.DataObjectEngine' dataObjectEngine and found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine (OnBeanCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (spring.jmx.enabled=true) found different value in property 'spring.jmx.enabled' (OnPropertyCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DmnEngineAutoConfiguration.DmnEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - DmnEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: org.flowable.dmn.engine.DmnEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'org.flowable.dmn.engine.DmnEngine' dmnEngine (OnBeanCondition) - - DmnEngineServicesAutoConfiguration.StandaloneEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: org.flowable.dmn.engine.DmnEngine,org.flowable.engine.ProcessEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'org.flowable.engine.ProcessEngine' processEngine (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchRestClientConfigurations.RestClientSnifferConfiguration: - Did not match: - - @ConditionalOnProperty (spring.elasticsearch.restclient.sniffer.enabled) did not find property 'spring.elasticsearch.restclient.sniffer.enabled' (OnPropertyCondition) - - EndpointAutoConfiguration#processEngineEndpoint: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - EventRegistryAutoConfiguration.EventRegistryAwsSnsConfiguration: - Did not match: - - @ConditionalOnBean (types: software.amazon.awssdk.services.sns.SnsClient; SearchStrategy: all) did not find any beans of type software.amazon.awssdk.services.sns.SnsClient (OnBeanCondition) - - EventRegistryAutoConfiguration.EventRegistryAwsSqsConfiguration: - Did not match: - - @ConditionalOnBean (types: software.amazon.awssdk.services.sqs.SqsClient; SearchStrategy: all) did not find any beans of type software.amazon.awssdk.services.sqs.SqsClient (OnBeanCondition) - - EventRegistryAutoConfiguration.EventRegistryJmsConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.jms.core.JmsOperations; SearchStrategy: all) did not find any beans of type org.springframework.jms.core.JmsOperations (OnBeanCondition) - - EventRegistryAutoConfiguration.EventRegistryKafkaConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.kafka.core.KafkaOperations; SearchStrategy: all) did not find any beans of type org.springframework.kafka.core.KafkaOperations (OnBeanCondition) - - EventRegistryAutoConfiguration.EventRegistryProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - EventRegistryAutoConfiguration.EventRegistryRabbitConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.amqp.rabbit.core.RabbitOperations; SearchStrategy: all) did not find any beans of type org.springframework.amqp.rabbit.core.RabbitOperations (OnBeanCondition) - - EventRegistryServicesAutoConfiguration.AlreadyInitializedEventRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: org.flowable.eventregistry.impl.EventRegistryEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'org.flowable.eventregistry.impl.EventRegistryEngine' eventRegistryEngine and found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine (OnBeanCondition) - - EventRegistryServicesAutoConfiguration.StandaloneEventRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: org.flowable.eventregistry.impl.EventRegistryEngine,org.flowable.engine.ProcessEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'org.flowable.engine.ProcessEngine' processEngine (OnBeanCondition) - - FlowableAwsS3AutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'software.amazon.awssdk.services.s3.S3Client' (OnClassCondition) - - FlowableAzureBlobStorageAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.azure.storage.blob.BlobContainerClient' (OnClassCondition) - - FlowableBucket4jRateLimitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.github.bucket4j.distributed.proxy.ProxyManager' (OnClassCondition) - - FlowableFrontendConfigurationControllerConfiguration#flowableFrontendConfigurationController: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.autoconfigure.frontend.FlowableFrontendConfigurationController; SearchStrategy: all) found beans of type 'com.flowable.autoconfigure.frontend.FlowableFrontendConfigurationController' flowableWorkFrontendController (OnBeanCondition) - - FlowableJpaAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans of type jakarta.persistence.EntityManagerFactory (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.flowable.spring.SpringProcessEngineConfiguration' (OnClassCondition) - - FlowableMcpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.platform.mcp.serviceregistry.McpServiceInvoker' (OnClassCondition) - - FlowableOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.core.user.OAuth2User' (OnClassCondition) - - FlowableOAuth2ClientTokenProviderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.client.OAuth2AuthorizedClientService' (OnClassCondition) - - FlowableOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - FlowableSecurityAutoConfiguration#flowableUserDetailsService: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.security.core.userdetails.UserDetailsService; SearchStrategy: all) found beans of type 'org.springframework.security.core.userdetails.UserDetailsService' flowableUserDetailsService (OnBeanCondition) - - FlowableSecurityJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.jwt.Jwt' (OnClassCondition) - - FlowableSecurityOAuth2AutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.core.user.OAuth2User' (OnClassCondition) - - FlowableServiceSystemInfoAutoConfiguration.ProcessEngineSystemInfoConfiguration#flowableDatabaseTableCountsSystemInfoContributor: - Did not match: - - @ConditionalOnAvailableSystemInfoProvider no property flowable.core.system-info.providers.table-counts.disabled found so disabling by default (OnAvailableSystemInfoProvider) - - FlowableSnsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'software.amazon.awssdk.services.sns.SnsClient' (OnClassCondition) - - FlowableSqsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'software.amazon.awssdk.services.sqs.SqsClient' (OnClassCondition) - - FormEngineAutoConfiguration.FormEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - FormEngineServicesAutoConfiguration.AlreadyInitializedFormEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.form.engine.FormEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'com.flowable.form.engine.FormEngine' coreFormEngine (OnBeanCondition) - - FormEngineServicesAutoConfiguration.StandaloneFormEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.form.engine.FormEngine,org.flowable.engine.ProcessEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'org.flowable.engine.ProcessEngine' processEngine (OnBeanCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphIdmEngineAutoConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.platform.idm.service-type=microsoft-graph) did not find property 'service-type' (OnPropertyCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - not a reactive web application (OnWebApplicationCondition) - - HeapDumpWebEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint the configured access for endpoint 'heapdump' is NONE (OnAvailableEndpointCondition) - - HttpClientConfiguration.ApacheHttpClient: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.spring.boot.http.FlowableHttpClientBuilder; SearchStrategy: all) found beans of type 'com.flowable.spring.boot.http.FlowableHttpClientBuilder' flowableHttpClientBuilder (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.apache.http.impl.client.HttpClientBuilder' (OnClassCondition) - - @ConditionalOnProperty (flowable.http.client-type=apacheHttpClient4) matched (OnPropertyCondition) - - HttpClientConfiguration.ApacheHttpClient5: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.spring.boot.http.FlowableHttpClientBuilder; SearchStrategy: all) found beans of type 'com.flowable.spring.boot.http.FlowableHttpClientBuilder' flowableHttpClientBuilder (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.apache.hc.client5.http.impl.async.HttpAsyncClientBuilder' (OnClassCondition) - - @ConditionalOnProperty (flowable.http.client-type=apacheHttpClient5) matched (OnPropertyCondition) - - HttpExchangesEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - IdmEngineAutoConfiguration.CoreIdmEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - IdmEngineAutoConfiguration.PasswordEncoderConfiguration#accessTokenPasswordEncoderConfigurer: - Did not match: - - @ConditionalOnProperty (flowable.platform.idm.token-signing-secret) did not find property 'token-signing-secret' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.security.crypto.argon2.Argon2PasswordEncoder' (OnClassCondition) - - IdmEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.idm.engine.CoreIdmEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'com.flowable.idm.engine.CoreIdmEngine' coreIdmEngine (OnBeanCondition) - - IncidentAutoConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.incident.report.exception.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - IndexingAutoConfiguration#flowableCustomPropertyBackedIndexingResourceProvider: - Did not match: - - @ConditionalOnProperty (flowable.indexing.mapping-resources) did not find property 'mapping-resources' (OnPropertyCondition) - - IndexingMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#sslInfo: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.ssl.enabled is not true (OnEnabledInfoContributorCondition) - Matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.info.SslInfo; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoContributorAutoConfiguration#sslInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.ssl.enabled is not true (OnEnabledInfoContributorCondition) - - InfoEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - InspectEngineAutoConfiguration.InspectEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - InspectEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.inspect.engine.InspectEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'com.flowable.inspect.engine.InspectEngine' inspectEngine (OnBeanCondition) - - IntegrationAutoConfiguration.IntegrationJdbcConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.jdbc.store.JdbcMessageStore' (OnClassCondition) - - IntegrationAutoConfiguration.IntegrationJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.jmx.config.EnableIntegrationMBeanExport' (OnClassCondition) - - IntegrationAutoConfiguration.IntegrationRSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.integration.rsocket.IntegrationRSocketEndpoint', 'io.rsocket.RSocket' (OnClassCondition) - - IntegrationAutoConfiguration.IntegrationTaskSchedulerConfiguration#taskSchedulerVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found bean 'simpleAsyncTaskSchedulerBuilder' (OnBeanCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnClass found required classes 'org.springframework.integration.graph.IntegrationGraphServer', 'org.springframework.boot.integration.actuate.endpoint.IntegrationGraphEndpoint', 'org.springframework.boot.actuate.autoconfigure.endpoint.condition.ConditionalOnAvailableEndpoint' (OnClassCondition) - - Jackson2HttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on Jackson2HttpMessageConvertersConfiguration.PreferJackson2OrJacksonUnavailableCondition.JacksonUnavailable @ConditionalOnMissingBean (types: org.springframework.boot.http.converter.autoconfigure.JacksonHttpMessageConvertersConfiguration$JacksonJsonHttpMessageConvertersCustomizer; SearchStrategy: all) found beans of type 'org.springframework.boot.http.converter.autoconfigure.JacksonHttpMessageConvertersConfiguration$JacksonJsonHttpMessageConvertersCustomizer' jacksonJsonHttpMessageConvertersCustomizer; NestedCondition on Jackson2HttpMessageConvertersConfiguration.PreferJackson2OrJacksonUnavailableCondition.Jackson2Preferred @ConditionalOnProperty (spring.http.converters.preferred-json-mapper=jackson2) did not find property 'spring.http.converters.preferred-json-mapper' (Jackson2HttpMessageConvertersConfiguration.PreferJackson2OrJacksonUnavailableCondition) - Matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - Jackson2HttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JacksonAutoConfiguration.CborConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'tools.jackson.dataformat.cbor.CBORMapper' (OnClassCondition) - - JacksonAutoConfiguration.XmlConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'tools.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.JacksonXmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'tools.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JmxAutoConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (spring.jmx.enabled=true) found different value in property 'spring.jmx.enabled' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - JmxEndpointAutoConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (spring.jmx.enabled=true) found different value in property 'spring.jmx.enabled' (OnPropertyCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'spring.datasource.jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JtaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.transaction.Transaction' (OnClassCondition) - - JvmMetricsAutoConfiguration.VirtualThreadMetricsConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.java21.instrument.binder.jdk.VirtualThreadMetrics' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - KotlinSerializationHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'kotlinx.serialization.Serializable', 'kotlinx.serialization.json.Json' (OnClassCondition) - - LdapIdmEngineAutoConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.platform.idm.service-type=ldap) did not find property 'service-type' (OnPropertyCondition) - - LicenseMetricsConfiguration#licenseRequestsPublisher: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) found beans of type 'org.springframework.security.web.SecurityFilterChain' basicDefaultSecurity; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass found required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - @ConditionalOnClass found required classes 'org.springframework.security.web.util.matcher.RequestMatcher', 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - MetricsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnClass found required classes 'org.springframework.boot.actuate.autoconfigure.endpoint.condition.ConditionalOnAvailableEndpoint', 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NotificationEngineAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.flowable.notification.engine.NotificationEngine', 'com.flowable.notification.engine.NotificationEngineConfiguration' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - OrchestrateLicenseCheckAutoConfiguration.LicenseServiceDatabaseStoreConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.license.db-store-enabled=true) did not find property 'flowable.license.db-store-enabled' (OnPropertyCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - PlatformEngineAutoConfiguration#platformTenantVariableValueEncryptor: - Did not match: - - @ConditionalOnProperty (flowable.platform.protected-variable-encryption.initialization-vector) did not find property 'initialization-vector' (OnPropertyCondition) - - PlatformEngineAutoConfiguration.PlatformDataObjectEngineConfiguration: - Did not match: - - @ConditionalOnBean (types: com.flowable.dataobject.engine.DataObjectEngineConfiguration; SearchStrategy: all) did not find any beans of type com.flowable.dataobject.engine.DataObjectEngineConfiguration (OnBeanCondition) - - PlatformEngineAutoConfiguration.PlatformEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - PlatformEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.platform.engine.PlatformEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.platform.engine.PlatformEngine' platformEngine and found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine (OnBeanCondition) - - PlatformRestApiAutoConfiguration.PlatformAiRestApiConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.platform.ai.rest.service.api.PlatformAiRestApiMarker' (OnClassCondition) - - PlatformRestApiAutoConfiguration.PlatformDesignRestApiConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.platform.design.base-url) did not find property 'base-url' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required class 'com.flowable.platform.rest.service.api.PlatformRestApiMarker' (OnClassCondition) - - PlatformRestApiAutoConfiguration.PlatformRestApiConfiguration#simpleUserLoginGenerator: - Did not match: - - @ConditionalOnProperty (flowable.platform.idm.experimental.user-login-generator=simple) did not find property 'experimental.user-login-generator' (OnPropertyCondition) - - PlatformRestApiAutoConfiguration.PlatformRestApiConfiguration#uuidUserLoginGenerator: - Did not match: - - @ConditionalOnProperty (flowable.platform.idm.experimental.user-login-generator=uuid) did not find property 'experimental.user-login-generator' (OnPropertyCondition) - - PlatformRestApiAutoConfiguration.TutorialEngineRestApiConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.tutorial.rest.service.api.TutorialEngineRestMarker' (OnClassCondition) - - PlatformServiceAiAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.platform.ai.service.PlatformAiServiceMarker' (OnClassCondition) - - PlatformServiceAutoConfiguration.PlatformContentServiceConfiguration#flowableTikaAutoDetectParserContentMediaTypeResolver: - Did not match: - - @ConditionalOnProperty (flowable.content.content-type-resolver=tika-auto-detect-parser) did not find property 'content-type-resolver' (OnPropertyCondition) - - PlatformServiceAutoConfiguration.PlatformMetricsReportRunnerConfiguration: - Did not match: - - @ConditionalOnBean (types: io.micrometer.elastic.ElasticMeterRegistry,com.flowable.indexing.IndexManager; SearchStrategy: all) did not find any beans of type io.micrometer.elastic.ElasticMeterRegistry (OnBeanCondition) - - PolicyEngineAutoConfiguration.PolicyEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - PolicyEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.policy.engine.PolicyEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'com.flowable.policy.engine.PolicyEngine' policyEngine (OnBeanCondition) - - PowerAutomateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.platform.powerautomate.FlowablePowerAutomateService' (OnClassCondition) - - ProcessEngineAutoConfiguration#asyncHistoryExecutor: - Did not match: - - @ConditionalOnMissingBean (names: asyncHistoryExecutor; SearchStrategy: all) found beans named asyncHistoryExecutor (OnBeanCondition) - Matched: - - @ConditionalOnProperty (flowable.process.async-history.enable) matched (OnPropertyCondition) - - ProcessEngineServicesAutoConfiguration.StandaloneEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: org.flowable.engine.ProcessEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine (OnBeanCondition) - - ProcessMessageDelivererAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.notification.process.ProcessMessageDeliverer' (OnClassCondition) - - ProjectAutoConfiguration#projectSchemaManager: - Did not match: - - @ConditionalOnResource did not find resource 'classpath:liquibase/flowable-project-db-changelog.xml' (OnResourceCondition) - - ProjectAutoConfiguration#projectSchemaManagerAutoTriggerLifecycle: - Did not match: - - @ConditionalOnBean (names: projectSchemaManager; SearchStrategy: all) did not find any beans named projectSchemaManager (OnBeanCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - QuestionnaireAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.questionnaire.service.QuestionnaireServiceImpl' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.rsocket.server.RSocketServerCustomizer' (OnClassCondition) - - ReactiveHttpClientAutoConfiguration.ReactorNetty: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.boot.reactor.netty.autoconfigure.ReactorNettyConfigurations' (OnClassCondition) - - ReactiveHttpServiceClientAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.service.registry.HttpServiceProxyRegistry; SearchStrategy: all) did not find any beans of type org.springframework.web.service.registry.HttpServiceProxyRegistry (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.reactive.function.client.support.WebClientAdapter' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - not a reactive web application (OnWebApplicationCondition) - Matched: - - @ConditionalOnClass found required classes 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity', 'org.springframework.security.web.server.WebFilterChainProxy', 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on ReactiveUserDetailsServiceAutoConfiguration.RSocketEnabledOrReactiveWebApplication.ReactiveWebApplicationCondition not a reactive web application; NestedCondition on ReactiveUserDetailsServiceAutoConfiguration.RSocketEnabledOrReactiveWebApplication.RSocketSecurityEnabledCondition @ConditionalOnBean (types: org.springframework.messaging.rsocket.annotation.support.RSocketMessageHandler; SearchStrategy: all) did not find any beans of type org.springframework.messaging.rsocket.annotation.support.RSocketMessageHandler (ReactiveUserDetailsServiceAutoConfiguration.RSocketEnabledOrReactiveWebApplication) - Matched: - - @ConditionalOnClass found required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - AnyNestedCondition 1 matched 2 did not; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.PasswordConfigured @ConditionalOnProperty (spring.security.user.password) did not find property 'spring.security.user.password'; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.NameConfigured @ConditionalOnProperty (spring.security.user.name) did not find property 'spring.security.user.name'; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.MissingAlternative @ConditionalOnMissingClass did not find unwanted classes 'org.springframework.security.oauth2.client.registration.ClientRegistrationRepository', 'org.springframework.security.oauth2.server.resource.introspection.OpaqueTokenIntrospector', 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured) - - ReactiveWebSecurityAutoConfiguration.SpringBootWebFluxSecurityConfiguration: - Did not match: - - not a reactive web application (OnWebApplicationCondition) - - RequestLoggingAutoConfiguration#flowableRequestLoggingFilter: - Did not match: - - @ConditionalOnProperty (flowable.rest.request-logging.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - SandboxExpressionAutoConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.sandbox.expression.strict-mode=true) did not find property 'strict-mode' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required class 'com.flowable.platform.common.el.AllowedInStrictMode' (OnClassCondition) - - SandboxScriptingAutoConfiguration#functionScriptingEngineConfigurer: - Did not match: - - @ConditionalOnBean (types: org.flowable.common.engine.impl.scripting.FlowableScriptEngine; SearchStrategy: all) did not find any beans of type org.flowable.common.engine.impl.scripting.FlowableScriptEngine (OnBeanCondition) - - SandboxScriptingConfigurations.AzureFunctionScriptingConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.sandbox.script.type=remote) did not find property 'type' (OnPropertyCondition) - - SandboxScriptingConfigurations.DisabledScriptingConfiguration: - Did not match: - - @ConditionalOnProperty (flowable.sandbox.script.disabled=true) did not find property 'disabled' (OnPropertyCondition) - - SbomEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - SecurityAutoConfiguration.SecurityDataConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.data.repository.query.SecurityEvaluationContextExtension' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration.JerseyRequestMatcherConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServiceRegistryEngineAutoConfiguration.ServiceRegistryEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - ServiceRegistryEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.serviceregistry.engine.ServiceRegistryEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.serviceregistry.engine.ServiceRegistryEngine' serviceRegistryEngine and found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine (OnBeanCondition) - - ServletHttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBooleanProperty (management.httpexchanges.recording.enabled=true) matched (OnPropertyCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (management.server.add-application-context-header=true) did not find property 'management.server.add-application-context-header' (OnPropertyCondition) - - ServletMappingsAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnClass found required classes 'org.springframework.boot.actuate.autoconfigure.endpoint.condition.ConditionalOnAvailableEndpoint', 'org.springframework.boot.actuate.web.mappings.MappingsEndpoint' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebSecurityAutoConfiguration.EnableWebSecurityConfiguration: - Did not match: - - @ConditionalOnMissingBean (names: springSecurityFilterChain; SearchStrategy: all) found beans named springSecurityFilterChain (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - ServletWebSecurityAutoConfiguration.SecurityFilterChainConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) found beans of type 'org.springframework.security.web.SecurityFilterChain' basicDefaultSecurity; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass found required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - - ServletWebServerConfiguration#forwardedHeaderFilter: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - SharePointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.platform.sharepoint.FlowableSharepointService' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint the configured access for endpoint 'shutdown' is NONE (OnAvailableEndpointCondition) - - SpringApplicationAdminJmxAutoConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (spring.application.admin.enabled=true) did not find property 'spring.application.admin.enabled' (OnPropertyCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on TaskExecutorConfigurations.OnExecutorCondition.ModelCondition @ConditionalOnProperty (spring.task.execution.mode=force) did not find property 'spring.task.execution.mode'; NestedCondition on TaskExecutorConfigurations.OnExecutorCondition.ExecutorBeanCondition @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) found beans of type 'java.util.concurrent.Executor' defaultAsyncTaskExecutor, flowableTaskInvokerAsyncTaskExecutor (TaskExecutorConfigurations.OnExecutorCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.scheduling.config.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.scheduling.config.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.scheduling.config.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.scheduling.config.internalScheduledAnnotationProcessor (OnBeanCondition) - - TasksAutoConfiguration.AbbyyTaskConfiguration: - Did not match: - - @ConditionalOnBean (types: com.flowable.platform.abbyy.FlowableAbbyyService; SearchStrategy: all) did not find any beans of type com.flowable.platform.abbyy.FlowableAbbyyService (OnBeanCondition) - - TasksAutoConfiguration.PowerAutomateTaskConfiguration: - Did not match: - - @ConditionalOnBean (types: com.flowable.platform.powerautomate.FlowablePowerAutomateService; SearchStrategy: all) did not find any beans of type com.flowable.platform.powerautomate.FlowablePowerAutomateService (OnBeanCondition) - - TemplateEngineAutoConfiguration.TemplateEngineProcessConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.app.engine.AppEngineConfiguration; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngineConfiguration' appEngineConfiguration (OnBeanCondition) - - TemplateEngineConfigurations.ReactiveTemplateEngineConfiguration: - Did not match: - - not a reactive web application (OnWebApplicationCondition) - - TemplateEngineServicesAutoConfiguration.AlreadyInitializedEngineConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: com.flowable.template.engine.TemplateEngine,com.flowable.app.engine.AppEngine; SearchStrategy: all) found beans of type 'com.flowable.app.engine.AppEngine' flowableAppEngine and found beans of type 'com.flowable.template.engine.TemplateEngine' flowableTemplateEngine (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - - ThymeleafAutoConfiguration.DataAttributeDialectConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.mxab.thymeleaf.extras.dataattribute.dialect.DataAttributeDialect' (OnClassCondition) - - ThymeleafAutoConfiguration.ThymeleafSecurityDialectConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.extras.springsecurity6.dialect.SpringSecurityDialect' (OnClassCondition) - - ThymeleafAutoConfiguration.ThymeleafWebFluxConfiguration: - Did not match: - - not a reactive web application (OnWebApplicationCondition) - - ThymeleafAutoConfiguration.ThymeleafWebLayoutConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'nz.net.ultraq.thymeleaf.layoutdialect.LayoutDialect' (OnClassCondition) - - TomcatReactiveManagementContextAutoConfiguration: - Did not match: - - not a reactive web application (OnWebApplicationCondition) - Matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextFactory' (OnClassCondition) - - TomcatReactiveWebServerAutoConfiguration: - Did not match: - - not a reactive web application (OnWebApplicationCondition) - Matched: - - @ConditionalOnClass found required classes 'org.springframework.http.ReactiveHttpInputMessage', 'org.apache.catalina.startup.Tomcat', 'org.springframework.boot.tomcat.reactive.TomcatReactiveWebServerFactory' (OnClassCondition) - - TomcatServletManagementContextAutoConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextFactory' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - TomcatServletWebServerAutoConfiguration#tomcatForwardedHeaderFilterCustomizer: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - TomcatWebServerConfiguration: - Did not match: - - Application is deployed as a WAR file. (OnWarDeploymentCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'org.springframework.transaction.aspectj.AbstractTransactionAspect' (OnBeanCondition) - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (spring.aop.proxy-target-class=false) did not find property 'spring.aop.proxy-target-class' (OnPropertyCondition) - - TutorialEngineAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.flowable.tutorial.engine.TutorialEngine', 'com.flowable.tutorial.engine.TutorialEngineConfiguration' (OnClassCondition) - - TutorialEngineServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.flowable.tutorial.engine.TutorialEngine', 'com.flowable.tutorial.engine.TutorialEngineConfiguration' (OnClassCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.security.authentication.AuthenticationManager,org.springframework.security.authentication.AuthenticationProvider,org.springframework.security.core.userdetails.UserDetailsService,org.springframework.security.authentication.AuthenticationManagerResolver,org.springframework.security.oauth2.jwt.JwtDecoder; SearchStrategy: all) found beans of type 'org.springframework.security.core.userdetails.UserDetailsService' flowableUserDetailsService (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - AnyNestedCondition 1 matched 2 did not; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.PasswordConfigured @ConditionalOnProperty (spring.security.user.password) did not find property 'spring.security.user.password'; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.NameConfigured @ConditionalOnProperty (spring.security.user.name) did not find property 'spring.security.user.name'; NestedCondition on MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured.MissingAlternative @ConditionalOnMissingClass did not find unwanted classes 'org.springframework.security.oauth2.client.registration.ClientRegistrationRepository', 'org.springframework.security.oauth2.server.resource.introspection.OpaqueTokenIntrospector', 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (MissingAlternativeUserDetailsManagerOrUserPropertiesConfigured) - - WebDavAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.flowable.webdav.impl.WebDavEngine' (OnClassCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnBooleanProperty (spring.mvc.hiddenmethod.filter.enabled=true) did not find property 'spring.mvc.hiddenmethod.filter.enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnBooleanProperty (spring.mvc.problemdetails.enabled=true) did not find property 'spring.mvc.problemdetails.enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration.HealthConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.health.actuate.endpoint.HealthEndpoint; SearchStrategy: all) found bean 'healthEndpoint' (OnBeanCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - WebMvcMappingsAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint not exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnClass found required classes 'org.springframework.boot.actuate.autoconfigure.endpoint.condition.ConditionalOnAvailableEndpoint', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.boot.actuate.web.mappings.MappingsEndpoint' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.transaction.TransactionManager' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.health.autoconfigure.registry.HealthContributorRegistryAutoConfiguration - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.http.client.autoconfigure.service.HttpServiceClientPropertiesAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - com.flowable.autoconfigure.platform.ProcessFunctionDelegatesAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.health.autoconfigure.contributor.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.http.client.autoconfigure.HttpClientAutoConfiguration - - com.flowable.autoconfigure.tasks.TasksAutoConfiguration - - com.flowable.autoconfigure.platform.PlatformAutoConfiguration - - com.flowable.spring.boot.rest.CoreInterceptorAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.integration.autoconfigure.metrics.IntegrationMetricsAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -]]> - - \ No newline at end of file diff --git a/customer-work/target/surefire-reports/com.customer.work.WorkApplicationTests.txt b/customer-work/target/surefire-reports/com.customer.work.WorkApplicationTests.txt deleted file mode 100644 index 8adbdc9..0000000 --- a/customer-work/target/surefire-reports/com.customer.work.WorkApplicationTests.txt +++ /dev/null @@ -1,292 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.customer.work.WorkApplicationTests -------------------------------------------------------------------------------- -Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 7.754 s <<< FAILURE! -- in com.customer.work.WorkApplicationTests -com.customer.work.WorkApplicationTests.contextLoads -- Time elapsed: 0.013 s <<< ERROR! -java.lang.IllegalStateException: Failed to load ApplicationContext for [WebMergedContextConfiguration@40e41f88 testClass = com.customer.work.WorkApplicationTests, locations = [], classes = [com.customer.work.WorkApplication], contextInitializerClasses = [], activeProfiles = [], propertySourceDescriptors = [], propertySourceProperties = ["org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true"], contextCustomizers = [org.springframework.boot.web.server.context.SpringBootTestRandomPortContextCustomizer@62e70ea3, org.springframework.boot.test.context.PropertyMappingContextCustomizer@0, org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@25ddbbbb, org.springframework.boot.test.http.client.DisableReactorResourceFactoryGlobalResourcesContextCustomizerFactory$DisableReactorResourceFactoryGlobalResourcesContextCustomizerCustomizer@226642a5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@625e134e, org.springframework.boot.test.autoconfigure.OnFailureConditionReportContextCustomizerFactory$OnFailureConditionReportContextCustomizer@5dbe30be, org.springframework.test.context.support.DynamicPropertiesContextCustomizer@0, org.springframework.boot.test.context.SpringBootTestAnnotation@dfa5ba73], resourceBasePath = "src/main/webapp", contextLoader = org.springframework.boot.test.context.SpringBootContextLoader, parent = null] - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.lambda$loadContext$0(DefaultCacheAwareContextLoaderDelegate.java:195) - at org.springframework.test.context.cache.DefaultContextCache.put(DefaultContextCache.java:214) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:160) - at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:128) - at org.springframework.test.context.web.ServletTestExecutionListener.setUpRequestContextIfNecessary(ServletTestExecutionListener.java:200) - at org.springframework.test.context.web.ServletTestExecutionListener.prepareTestInstance(ServletTestExecutionListener.java:139) - at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:260) - at org.springframework.test.context.junit.jupiter.SpringExtension.postProcessTestInstance(SpringExtension.java:210) - at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:186) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:214) - at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:197) - at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:214) - at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1716) - at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:570) - at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:560) - at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:153) - at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:176) - at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:265) - at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:632) - at java.base/java.util.Optional.orElseGet(Optional.java:364) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1604) - at java.base/java.util.ArrayList.forEach(ArrayList.java:1604) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration': Unsatisfied dependency expressed through method 'setFilterChains' parameter 0: Error creating bean with name 'basicDefaultSecurity' defined in class path resource [com/customer/work/SecurityHttpBasicConfiguration.class]: Unsatisfied dependency expressed through method 'basicDefaultSecurity' parameter 0: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity' defined in class path resource [org/springframework/security/config/annotation/web/configuration/HttpSecurityConfiguration.class]: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'flowableUserDetailsService' defined in class path resource [com/flowable/autoconfigure/security/FlowablePlatformSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableUserDetailsService' parameter 0: Error creating bean with name 'platformIdentityService' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'platformIdentityService' parameter 0: Error creating bean with name 'coreIdmEngine' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'coreIdmEngine' parameter 0: Error creating bean with name 'com.flowable.spring.boot.app.AppEngineServicesAutoConfiguration': Error creating bean with name 'appIndexingConfigurer' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appIndexingConfigurer' parameter 0: Error creating bean with name 'appEngineIndexingConfigurator' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appEngineIndexingConfigurator' parameter 0: Error creating bean with name 'indexManager' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'indexManager' parameter 0: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.resolveMethodArguments(AutowiredAnnotationBeanPostProcessor.java:872) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.inject(AutowiredAnnotationBeanPostProcessor.java:827) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:146) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:493) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1446) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:602) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:196) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.instantiateSingleton(DefaultListableBeanFactory.java:1218) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingleton(DefaultListableBeanFactory.java:1184) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:1121) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:994) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:621) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:756) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:445) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:321) - at org.springframework.boot.test.context.SpringBootContextLoader.lambda$loadContext$2(SpringBootContextLoader.java:156) - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:58) - at org.springframework.util.function.ThrowingSupplier.get(ThrowingSupplier.java:46) - at org.springframework.boot.SpringApplication.withHook(SpringApplication.java:1465) - at org.springframework.boot.test.context.SpringBootContextLoader$ContextLoaderHook.run(SpringBootContextLoader.java:605) - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:156) - at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:115) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContextInternal(DefaultCacheAwareContextLoaderDelegate.java:247) - at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.lambda$loadContext$0(DefaultCacheAwareContextLoaderDelegate.java:167) - ... 21 more -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'basicDefaultSecurity' defined in class path resource [com/customer/work/SecurityHttpBasicConfiguration.class]: Unsatisfied dependency expressed through method 'basicDefaultSecurity' parameter 0: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity' defined in class path resource [org/springframework/security/config/annotation/web/configuration/HttpSecurityConfiguration.class]: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'flowableUserDetailsService' defined in class path resource [com/flowable/autoconfigure/security/FlowablePlatformSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableUserDetailsService' parameter 0: Error creating bean with name 'platformIdentityService' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'platformIdentityService' parameter 0: Error creating bean with name 'coreIdmEngine' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'coreIdmEngine' parameter 0: Error creating bean with name 'com.flowable.spring.boot.app.AppEngineServicesAutoConfiguration': Error creating bean with name 'appIndexingConfigurer' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appIndexingConfigurer' parameter 0: Error creating bean with name 'appEngineIndexingConfigurator' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appEngineIndexingConfigurator' parameter 0: Error creating bean with name 'indexManager' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'indexManager' parameter 0: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.addCandidateEntry(DefaultListableBeanFactory.java:2008) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1971) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeanCollection(DefaultListableBeanFactory.java:1863) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeans(DefaultListableBeanFactory.java:1833) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1711) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.resolveMethodArguments(AutowiredAnnotationBeanPostProcessor.java:864) - ... 48 more -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity' defined in class path resource [org/springframework/security/config/annotation/web/configuration/HttpSecurityConfiguration.class]: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'flowableUserDetailsService' defined in class path resource [com/flowable/autoconfigure/security/FlowablePlatformSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableUserDetailsService' parameter 0: Error creating bean with name 'platformIdentityService' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'platformIdentityService' parameter 0: Error creating bean with name 'coreIdmEngine' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'coreIdmEngine' parameter 0: Error creating bean with name 'com.flowable.spring.boot.app.AppEngineServicesAutoConfiguration': Error creating bean with name 'appIndexingConfigurer' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appIndexingConfigurer' parameter 0: Error creating bean with name 'appEngineIndexingConfigurator' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appEngineIndexingConfigurator' parameter 0: Error creating bean with name 'indexManager' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'indexManager' parameter 0: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:657) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:489) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:351) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1762) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 65 more -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.security.config.annotation.web.builders.HttpSecurity]: Factory method 'httpSecurity' threw exception with message: Error creating bean with name 'flowableUserDetailsService' defined in class path resource [com/flowable/autoconfigure/security/FlowablePlatformSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableUserDetailsService' parameter 0: Error creating bean with name 'platformIdentityService' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'platformIdentityService' parameter 0: Error creating bean with name 'coreIdmEngine' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'coreIdmEngine' parameter 0: Error creating bean with name 'com.flowable.spring.boot.app.AppEngineServicesAutoConfiguration': Error creating bean with name 'appIndexingConfigurer' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appIndexingConfigurer' parameter 0: Error creating bean with name 'appEngineIndexingConfigurator' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appEngineIndexingConfigurator' parameter 0: Error creating bean with name 'indexManager' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'indexManager' parameter 0: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.lambda$instantiate$0(SimpleInstantiationStrategy.java:183) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiateWithFactoryMethod(SimpleInstantiationStrategy.java:72) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:152) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) - ... 77 more -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'flowableUserDetailsService' defined in class path resource [com/flowable/autoconfigure/security/FlowablePlatformSecurityAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableUserDetailsService' parameter 0: Error creating bean with name 'platformIdentityService' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'platformIdentityService' parameter 0: Error creating bean with name 'coreIdmEngine' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'coreIdmEngine' parameter 0: Error creating bean with name 'com.flowable.spring.boot.app.AppEngineServicesAutoConfiguration': Error creating bean with name 'appIndexingConfigurer' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appIndexingConfigurer' parameter 0: Error creating bean with name 'appEngineIndexingConfigurator' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appEngineIndexingConfigurator' parameter 0: Error creating bean with name 'indexManager' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'indexManager' parameter 0: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1305) - at org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer.configure(InitializeUserDetailsBeanManagerConfigurer.java:94) - at org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer$InitializeUserDetailsManagerConfigurer.configure(InitializeUserDetailsBeanManagerConfigurer.java:63) - at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.configure(AbstractConfiguredSecurityBuilder.java:386) - at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.doBuild(AbstractConfiguredSecurityBuilder.java:336) - at org.springframework.security.config.annotation.AbstractSecurityBuilder.build(AbstractSecurityBuilder.java:38) - at org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration.getAuthenticationManager(AuthenticationConfiguration.java:121) - at org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.authenticationManager(HttpSecurityConfiguration.java:152) - at org.springframework.security.config.annotation.web.configuration.HttpSecurityConfiguration.httpSecurity(HttpSecurityConfiguration.java:119) - at java.base/java.lang.reflect.Method.invoke(Method.java:565) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.lambda$instantiate$0(SimpleInstantiationStrategy.java:155) - ... 80 more -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'platformIdentityService' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'platformIdentityService' parameter 0: Error creating bean with name 'coreIdmEngine' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'coreIdmEngine' parameter 0: Error creating bean with name 'com.flowable.spring.boot.app.AppEngineServicesAutoConfiguration': Error creating bean with name 'appIndexingConfigurer' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appIndexingConfigurer' parameter 0: Error creating bean with name 'appEngineIndexingConfigurator' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appEngineIndexingConfigurator' parameter 0: Error creating bean with name 'indexManager' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'indexManager' parameter 0: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1762) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 100 more -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'coreIdmEngine' defined in class path resource [com/flowable/spring/boot/idm/IdmEngineServicesAutoConfiguration$AlreadyInitializedAppEngineConfiguration.class]: Unsatisfied dependency expressed through method 'coreIdmEngine' parameter 0: Error creating bean with name 'com.flowable.spring.boot.app.AppEngineServicesAutoConfiguration': Error creating bean with name 'appIndexingConfigurer' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appIndexingConfigurer' parameter 0: Error creating bean with name 'appEngineIndexingConfigurator' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appEngineIndexingConfigurator' parameter 0: Error creating bean with name 'indexManager' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'indexManager' parameter 0: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveBean(DefaultListableBeanFactory.java:1225) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1704) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 114 more -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.flowable.spring.boot.app.AppEngineServicesAutoConfiguration': Error creating bean with name 'appIndexingConfigurer' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appIndexingConfigurer' parameter 0: Error creating bean with name 'appEngineIndexingConfigurator' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appEngineIndexingConfigurator' parameter 0: Error creating bean with name 'indexManager' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'indexManager' parameter 0: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:610) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:196) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:413) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1762) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 128 more -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'appIndexingConfigurer' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appIndexingConfigurer' parameter 0: Error creating bean with name 'appEngineIndexingConfigurator' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appEngineIndexingConfigurator' parameter 0: Error creating bean with name 'indexManager' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'indexManager' parameter 0: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.addCandidateEntry(DefaultListableBeanFactory.java:2015) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1971) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeans(DefaultListableBeanFactory.java:1792) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1711) - at org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyObjectProvider.resolveStream(DefaultListableBeanFactory.java:2685) - at org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyObjectProvider.orderedStream(DefaultListableBeanFactory.java:2679) - at com.flowable.spring.boot.BaseEngineConfigurationWithConfigurers.setEngineConfigurers(BaseEngineConfigurationWithConfigurers.java:32) - at java.base/java.lang.reflect.Method.invoke(Method.java:565) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.inject(AutowiredAnnotationBeanPostProcessor.java:832) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:146) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:493) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1446) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:602) - ... 147 more -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'appEngineIndexingConfigurator' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'appEngineIndexingConfigurator' parameter 0: Error creating bean with name 'indexManager' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'indexManager' parameter 0: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveBean(DefaultListableBeanFactory.java:1225) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1704) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 170 more -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'indexManager' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'indexManager' parameter 0: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveBean(DefaultListableBeanFactory.java:1225) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1704) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 184 more -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'flowableElasticsearchClient' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Unsatisfied dependency expressed through method 'flowableElasticsearchClient' parameter 1: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:804) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:546) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1362) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:565) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:229) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1762) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 198 more -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'elasticsearchCompatibility' defined in class path resource [com/flowable/autoconfigure/indexing/IndexingAutoConfiguration.class]: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1817) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:603) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:525) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:371) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:331) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:201) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveBean(DefaultListableBeanFactory.java:1225) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1704) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1651) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:912) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791) - ... 212 more -Caused by: org.flowable.common.engine.api.FlowableException: Could not retrieve Elasticsearch version information. One possible reason could be that ES is not accessible. See root cause - at com.flowable.indexing.ElasticsearchCompatibilityImpl.afterPropertiesSet(ElasticsearchCompatibilityImpl.java:134) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1864) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1813) - ... 223 more -Caused by: java.net.ConnectException: Connect to http://localhost:9203 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused - at co.elastic.clients.transport.rest5_client.low_level.Rest5Client.extractAndWrapCause(Rest5Client.java:945) - at co.elastic.clients.transport.rest5_client.low_level.Rest5Client.performRequest(Rest5Client.java:308) - at co.elastic.clients.transport.rest5_client.low_level.Rest5Client.performRequest(Rest5Client.java:293) - at com.flowable.indexing.ElasticsearchCompatibilityImpl.afterPropertiesSet(ElasticsearchCompatibilityImpl.java:56) - ... 225 more -Caused by: org.apache.hc.client5.http.HttpHostConnectException: Connect to http://localhost:9203 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:639) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:1046) - at org.apache.hc.core5.reactor.InternalConnectChannel.onIOEvent(InternalConnectChannel.java:70) - at org.apache.hc.core5.reactor.InternalChannel.handleIOEvent(InternalChannel.java:51) - at org.apache.hc.core5.reactor.SingleCoreIOReactor.processEvents(SingleCoreIOReactor.java:176) - at org.apache.hc.core5.reactor.SingleCoreIOReactor.doExecute(SingleCoreIOReactor.java:125) - at org.apache.hc.core5.reactor.AbstractSingleCoreIOReactor.execute(AbstractSingleCoreIOReactor.java:92) - at org.apache.hc.core5.reactor.IOReactorWorker.run(IOReactorWorker.java:44) - at java.base/java.lang.Thread.run(Thread.java:1474) - diff --git a/customer-work/target/test-classes/application.properties b/customer-work/target/test-classes/application.properties deleted file mode 100644 index 9fd4faf..0000000 --- a/customer-work/target/test-classes/application.properties +++ /dev/null @@ -1,24 +0,0 @@ -spring.datasource.url=jdbc:h2:mem:flowable-work-db;DB_CLOSE_DELAY=1000 -spring.datasource.username=admin -spring.datasource.password=test - -# To make our life easier in tests we are disabling the async executor and elasticsearch -flowable.async-executor-activate=false -flowable.async-history-executor-activate=false -flowable.indexing.enabled=false -management.health.elasticsearch.enabled=false -management.metrics.export.elastic.enabled=false - -# Set debug level in tests -logging.level.com.flowable=INFO -logging.level.com.flowable.local.work.model.FlowableModelTestUtils=INFO - -# Disable the timeout process in the tests -flowable.external-system.wechat.timeout.process-definition-key= - -# Path to test-auto-deploy-apps -flowable.app.resource-location=classpath*:/test-auto-deploy-apps/ - -# Email -flowable.mail.server.host=localhost -flowable.mail.server.port=3025 \ No newline at end of file diff --git a/customer-work/target/test-classes/com/customer/work/WorkApplicationTests.class b/customer-work/target/test-classes/com/customer/work/WorkApplicationTests.class deleted file mode 100644 index a749da7..0000000 Binary files a/customer-work/target/test-classes/com/customer/work/WorkApplicationTests.class and /dev/null differ diff --git a/customer-work/target/test-classes/com/customer/work/config/TestConfiguration.class b/customer-work/target/test-classes/com/customer/work/config/TestConfiguration.class deleted file mode 100644 index 4b3e8b2..0000000 Binary files a/customer-work/target/test-classes/com/customer/work/config/TestConfiguration.class and /dev/null differ diff --git a/customer-work/target/test-classes/com/customer/work/model/EmailDto.class b/customer-work/target/test-classes/com/customer/work/model/EmailDto.class deleted file mode 100644 index 67e3101..0000000 Binary files a/customer-work/target/test-classes/com/customer/work/model/EmailDto.class and /dev/null differ diff --git a/customer-work/target/test-classes/com/customer/work/model/FlowableExcelMapper.class b/customer-work/target/test-classes/com/customer/work/model/FlowableExcelMapper.class deleted file mode 100644 index 6686984..0000000 Binary files a/customer-work/target/test-classes/com/customer/work/model/FlowableExcelMapper.class and /dev/null differ diff --git a/customer-work/target/test-classes/com/customer/work/model/FlowableExcelParser.class b/customer-work/target/test-classes/com/customer/work/model/FlowableExcelParser.class deleted file mode 100644 index 222d3e3..0000000 Binary files a/customer-work/target/test-classes/com/customer/work/model/FlowableExcelParser.class and /dev/null differ diff --git a/customer-work/target/test-classes/com/customer/work/model/FlowableJsonParser.class b/customer-work/target/test-classes/com/customer/work/model/FlowableJsonParser.class deleted file mode 100644 index 6186f7c..0000000 Binary files a/customer-work/target/test-classes/com/customer/work/model/FlowableJsonParser.class and /dev/null differ diff --git a/customer-work/target/test-classes/com/customer/work/model/FlowableModelTest.class b/customer-work/target/test-classes/com/customer/work/model/FlowableModelTest.class deleted file mode 100644 index 80d6ee4..0000000 Binary files a/customer-work/target/test-classes/com/customer/work/model/FlowableModelTest.class and /dev/null differ diff --git a/customer-work/target/test-classes/com/customer/work/model/FlowableModelTestUtils.class b/customer-work/target/test-classes/com/customer/work/model/FlowableModelTestUtils.class deleted file mode 100644 index 0aaa2cf..0000000 Binary files a/customer-work/target/test-classes/com/customer/work/model/FlowableModelTestUtils.class and /dev/null differ diff --git a/customer-work/target/test-classes/com/customer/work/model/TestMailServer.class b/customer-work/target/test-classes/com/customer/work/model/TestMailServer.class deleted file mode 100644 index 30d5747..0000000 Binary files a/customer-work/target/test-classes/com/customer/work/model/TestMailServer.class and /dev/null differ diff --git a/customer-work/target/test-classes/com/customer/work/model/TestMailServerExtension.class b/customer-work/target/test-classes/com/customer/work/model/TestMailServerExtension.class deleted file mode 100644 index 3270ec0..0000000 Binary files a/customer-work/target/test-classes/com/customer/work/model/TestMailServerExtension.class and /dev/null differ diff --git a/customer-work/target/test-classes/com/customer/work/model/test/ModelTest.class b/customer-work/target/test-classes/com/customer/work/model/test/ModelTest.class deleted file mode 100644 index da4ac77..0000000 Binary files a/customer-work/target/test-classes/com/customer/work/model/test/ModelTest.class and /dev/null differ diff --git a/customer-work/target/test-classes/model/test/C001/T001.json b/customer-work/target/test-classes/model/test/C001/T001.json deleted file mode 100644 index a48859a..0000000 --- a/customer-work/target/test-classes/model/test/C001/T001.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "root": { - "testText": "my test text" - } -} \ No newline at end of file diff --git a/customer-work/target/test-classes/model/test/P001/initiator.json b/customer-work/target/test-classes/model/test/P001/initiator.json deleted file mode 100644 index fbc534b..0000000 --- a/customer-work/target/test-classes/model/test/P001/initiator.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "__IN": { - "initiator": "admin" - } -} \ No newline at end of file diff --git a/customer-work/target/test-classes/model/test/P002/boolean1.json b/customer-work/target/test-classes/model/test/P002/boolean1.json deleted file mode 100644 index 6f84512..0000000 --- a/customer-work/target/test-classes/model/test/P002/boolean1.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "param": true, - "__IN": { - "param": false - }, - "__OUT": { - "result": "out" - } -} \ No newline at end of file diff --git a/customer-work/target/test-classes/model/test/P002/boolean2.json b/customer-work/target/test-classes/model/test/P002/boolean2.json deleted file mode 100644 index 3ebab25..0000000 --- a/customer-work/target/test-classes/model/test/P002/boolean2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "param": false, - "__IN": { - "param": true - }, - "__OUT": { - "result": "out" - } -} \ No newline at end of file diff --git a/customer-work/target/test-classes/model/test/P002/date.json b/customer-work/target/test-classes/model/test/P002/date.json deleted file mode 100644 index 2829b47..0000000 --- a/customer-work/target/test-classes/model/test/P002/date.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "param": "2025-11-12", - "__IN": { - "param": "2025-11-11" - }, - "__OUT": { - "result": "out" - } -} \ No newline at end of file diff --git a/customer-work/target/test-classes/model/test/P002/double.json b/customer-work/target/test-classes/model/test/P002/double.json deleted file mode 100644 index 38cd1a2..0000000 --- a/customer-work/target/test-classes/model/test/P002/double.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "param": 123.456, - "__IN": { - "param": 456.789 - }, - "__OUT": { - "result": "out" - } -} \ No newline at end of file diff --git a/customer-work/target/test-classes/model/test/P002/int.json b/customer-work/target/test-classes/model/test/P002/int.json deleted file mode 100644 index cd503ec..0000000 --- a/customer-work/target/test-classes/model/test/P002/int.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "param": 123, - "__IN": { - "param": 456 - }, - "__OUT": { - "result": "out" - } -} \ No newline at end of file diff --git a/customer-work/target/test-classes/model/test/P002/p002Test.xlsx b/customer-work/target/test-classes/model/test/P002/p002Test.xlsx deleted file mode 100644 index b80f353..0000000 Binary files a/customer-work/target/test-classes/model/test/P002/p002Test.xlsx and /dev/null differ diff --git a/customer-work/target/test-classes/model/test/P002/string1.json b/customer-work/target/test-classes/model/test/P002/string1.json deleted file mode 100644 index 862081d..0000000 --- a/customer-work/target/test-classes/model/test/P002/string1.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "param": "hello root", - "__IN": { - "param": "hello" - }, - "__OUT": { - "result": "out" - } -} \ No newline at end of file diff --git a/customer-work/target/test-classes/model/test/P002/string2.json b/customer-work/target/test-classes/model/test/P002/string2.json deleted file mode 100644 index d0b0429..0000000 --- a/customer-work/target/test-classes/model/test/P002/string2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "param": "123", - "__IN": { - "param": "456" - }, - "__OUT": { - "result": "out" - } -} \ No newline at end of file diff --git a/customer-work/target/test-classes/model/test/P002/string3.json b/customer-work/target/test-classes/model/test/P002/string3.json deleted file mode 100644 index 91626b3..0000000 --- a/customer-work/target/test-classes/model/test/P002/string3.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "param": "123.456,", - "__IN": { - "param": "456.789" - }, - "__OUT": { - "result": "out" - } -} \ No newline at end of file diff --git a/customer-work/target/test-classes/model/test/P005/T001.json b/customer-work/target/test-classes/model/test/P005/T001.json deleted file mode 100644 index e5451ad..0000000 --- a/customer-work/target/test-classes/model/test/P005/T001.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "root": { - "dataEntry": "my root text" - } -} \ No newline at end of file diff --git a/customer-work/target/test-classes/test-auto-deploy-apps/TST_APP.zip b/customer-work/target/test-classes/test-auto-deploy-apps/TST_APP.zip deleted file mode 100644 index 62086df..0000000 Binary files a/customer-work/target/test-classes/test-auto-deploy-apps/TST_APP.zip and /dev/null differ