Empty Response on API on restart with spring boot

18 views
Skip to first unread message

santosh reddy

unread,
Jun 16, 2026, 10:33:15 PM (11 days ago) Jun 16
to Kogito development mailing list
Hi , 

I'm using kogito version: 10.1.0 and spring boot 3.3.4 with postgreDB. I'm able to save the data in db but when we restart not able to retrieve data , getting empty response.  Can any one help on this 

server.port=8081
# Core Engine Target Mappings
kie.persistence.type=postgresql
kie.usertask.storage.type=jpa
# Enable automatic database schema generation for KIE tables
kie.flyway.enabled=false
spring.flyway.enabled=false
spring.jpa.hibernate.ddl-auto=update
# Database Connection Settings
spring.datasource.url=jdbc:postgresql://localhost:5432/kogito_history2?currentSchema=public
spring.datasource.username=postgres
spring.datasource.password=postgres
spring.datasource.driver-class-name=org.postgresql.Driver
# Hibernate Dialect Definition
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect


POM.XML
<?xml version="1.0" encoding="UTF-8"?>

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.4</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>

<artifactId>process-postgresql-persistence-springboot</artifactId>
<name>Kogito Example :: Process PostgreSQL Persistence Spring Boot</name>
<description>Kogito with PostgreSQL persistence - Spring Boot</description>

<properties>
<version.org.kie.kogito>10.1.0</version.org.kie.kogito>
<kogito.bom.version>10.1.0</kogito.bom.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-spring-boot-bom</artifactId>
<version>${kogito.bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

<!-- kogito -->
<dependency>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-api</artifactId>
</dependency>

<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<!--Process Management-->
<dependency>
<groupId>org.kie</groupId>
<artifactId>kie-addons-springboot-process-management</artifactId>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.8.0</version>
</dependency>

<!--JPA-->
<!-- Source:
https://mvnrepository.com/artifact/org.jbpm/jbpm-addons-springboot-usertask-storage-jpa -->
<dependency>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-addons-springboot-usertask-storage-jpa</artifactId>
</dependency>




<dependency>
<groupId>org.kie</groupId>
<artifactId>kie-addons-springboot-persistence-jdbc</artifactId>

<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-spring-boot-test-utils</artifactId>
<version>${version.org.kie.kogito}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>

<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-maven-plugin</artifactId>
<version>${version.org.kie.kogito}</version>
<executions>
<execution>
<goals>
<goal>generateModel</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>events</id>
<activation>
<property>
<name>events</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.kie</groupId>
<artifactId>kie-addons-springboot-events-process-kafka</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
</project>



Logs: 

2026-06-16T21:28:44.554-05:00 INFO 10852 --- [ main] org.acme.travels.KogitoApplication : Starting KogitoApplication using Java 17.0.12 with PID 10852 (C:\Users\velag\Downloads\incubator-kie-kogito-examples-main\incubator-kie-kogito-examples-main\kogito-springboot-examples\process-postgresql-persistence-springboot\target\classes started by velag in C:\Users\velag\Downloads\incubator-kie-kogito-examples-main\incubator-kie-kogito-examples-main\kogito-springboot-examples\process-postgresql-persistence-springboot)

2026-06-16T21:28:44.556-05:00 INFO 10852 --- [ main] org.acme.travels.KogitoApplication : No active profile set, falling back to 1 default profile: "default"

2026-06-16T21:28:45.587-05:00 INFO 10852 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port 8081 (http)

2026-06-16T21:28:45.596-05:00 INFO 10852 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]

2026-06-16T21:28:45.596-05:00 INFO 10852 --- [ main] o.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/10.1.30]

2026-06-16T21:28:45.651-05:00 INFO 10852 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext

2026-06-16T21:28:45.652-05:00 INFO 10852 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1064 ms

2026-06-16T21:28:45.797-05:00 DEBUG 10852 --- [ main] o.k.k.u.impl.DefaultUserTaskConfig : UserTask config element org.kie.kogito.usertask.impl.DefaultUserTaskEventListenerConfig@7772d266

2026-06-16T21:28:45.798-05:00 DEBUG 10852 --- [ main] o.k.k.u.impl.DefaultUserTaskConfig : UserTask config element org.kie.kogito.services.uow.DefaultUnitOfWorkManager@14b8a751

2026-06-16T21:28:45.799-05:00 DEBUG 10852 --- [ main] o.k.k.u.impl.DefaultUserTaskConfig : UserTask config element org.kie.kogito.services.jobs.impl.InMemoryJobService@554566a8

2026-06-16T21:28:45.799-05:00 DEBUG 10852 --- [ main] o.k.k.u.impl.DefaultUserTaskConfig : UserTask config element org.kie.kogito.spring.auth.SpringIdentityProvider@3751acd7

2026-06-16T21:28:45.801-05:00 DEBUG 10852 --- [ main] o.k.k.u.impl.DefaultUserTaskConfig : UserTask config element org.kie.kogito.usertask.impl.lifecycle.DefaultUserTaskLifeCycle@3f866f50

2026-06-16T21:28:45.801-05:00 DEBUG 10852 --- [ main] o.k.k.u.impl.DefaultUserTaskConfig : UserTask config element org.kie.kogito.usertask.impl.DefaultUserTaskAssignmentStrategyConfig@1201769d

2026-06-16T21:28:45.802-05:00 INFO 10852 --- [ main] o.k.k.u.impl.InMemoryUserTaskInstances : Initializing InMemoryUsertaskInstances

2026-06-16T21:28:45.802-05:00 DEBUG 10852 --- [ main] o.k.k.u.impl.DefaultUserTaskConfig : UserTask config element org.kie.kogito.usertask.impl.InMemoryUserTaskInstances@2e2f20b8

2026-06-16T21:28:45.860-05:00 DEBUG 10852 --- [ main] com.zaxxer.hikari.HikariConfig : Driver class org.postgresql.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@73d16e93

2026-06-16T21:28:45.936-05:00 DEBUG 10852 --- [ main] o.j.w.i.i.NodeInstanceFactoryRegistry : override new node instance factory for class org.jbpm.workflow.core.node.SubProcessNode set by org.jbpm.workflow.instance.impl.factory.DefaultNodeInstanceFactory

2026-06-16T21:28:45.993-05:00 DEBUG 10852 --- [ main] o.j.w.i.i.NodeInstanceFactoryRegistry : override new node instance factory for class org.jbpm.workflow.core.node.SubProcessNode set by org.jbpm.workflow.instance.impl.factory.DefaultNodeInstanceFactory

2026-06-16T21:28:46.004-05:00 WARN 10852 --- [ main] o.k.k.s.r.ProcessDefinitionEventRegistry : Not source found for process id dealreviews

2026-06-16T21:28:46.005-05:00 DEBUG 10852 --- [ main] o.k.k.s.r.ProcessDefinitionEventRegistry : Registering process definition with id: 0defbf79-2e00-4c36-b5a7-2c9ba6f62dc2

2026-06-16T21:28:46.005-05:00 WARN 10852 --- [ main] o.k.k.s.r.ProcessDefinitionEventRegistry : Not source found for process id deals

2026-06-16T21:28:46.005-05:00 DEBUG 10852 --- [ main] o.k.k.s.r.ProcessDefinitionEventRegistry : Registering process definition with id: 6d329054-d466-44f2-8c50-455f1de8671e

2026-06-16T21:28:46.005-05:00 DEBUG 10852 --- [ main] o.k.k.s.r.ProcessDefinitionEventRegistry : Publishing all processes definitions

2026-06-16T21:28:46.029-05:00 DEBUG 10852 --- [ main] o.k.k.u.impl.model.DeadlineHelper : Parsing deadlines for text null

2026-06-16T21:28:46.029-05:00 DEBUG 10852 --- [ main] o.k.k.u.impl.model.DeadlineHelper : Parsing deadlines for text null

2026-06-16T21:28:46.029-05:00 DEBUG 10852 --- [ main] o.k.k.u.impl.model.DeadlineHelper : Parsing deadlines for text null

2026-06-16T21:28:46.029-05:00 DEBUG 10852 --- [ main] o.k.k.u.impl.model.DeadlineHelper : Parsing deadlines for text null

2026-06-16T21:28:46.498-05:00 INFO 10852 --- [ main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint beneath base path '/actuator'

2026-06-16T21:28:46.540-05:00 INFO 10852 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port 8081 (http) with context path '/'

2026-06-16T21:28:46.551-05:00 INFO 10852 --- [ main] org.acme.travels.KogitoApplication : Started KogitoApplication in 2.246 seconds (process running for 2.592)

2026-06-16T21:28:49.076-05:00 INFO 10852 --- [nio-8081-exec-8] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'

2026-06-16T21:28:49.077-05:00 INFO 10852 --- [nio-8081-exec-8] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'

2026-06-16T21:28:49.079-05:00 INFO 10852 --- [nio-8081-exec-8] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms

2026-06-16T21:28:49.184-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : HikariPool-1 - configuration:

2026-06-16T21:28:49.191-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : allowPoolSuspension.............false

2026-06-16T21:28:49.191-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : autoCommit......................true

2026-06-16T21:28:49.191-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : catalog.........................none

2026-06-16T21:28:49.192-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : connectionInitSql...............none

2026-06-16T21:28:49.192-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : connectionTestQuery.............none

2026-06-16T21:28:49.192-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : connectionTimeout...............30000

2026-06-16T21:28:49.192-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : dataSource......................none

2026-06-16T21:28:49.193-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : dataSourceClassName.............none

2026-06-16T21:28:49.193-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : dataSourceJNDI..................none

2026-06-16T21:28:49.193-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : dataSourceProperties............{password=<masked>}

2026-06-16T21:28:49.193-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : driverClassName................."org.postgresql.Driver"

2026-06-16T21:28:49.193-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : exceptionOverrideClassName......none

2026-06-16T21:28:49.195-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : healthCheckProperties...........{}

2026-06-16T21:28:49.195-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : healthCheckRegistry.............none

2026-06-16T21:28:49.195-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : idleTimeout.....................600000

2026-06-16T21:28:49.195-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : initializationFailTimeout.......1

2026-06-16T21:28:49.195-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : isolateInternalQueries..........false

2026-06-16T21:28:49.196-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : jdbcUrl.........................jdbc:postgresql://localhost:5432/kogito_history2?currentSchema=public

2026-06-16T21:28:49.196-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : keepaliveTime...................0

2026-06-16T21:28:49.196-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : leakDetectionThreshold..........0

2026-06-16T21:28:49.196-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : maxLifetime.....................1800000

2026-06-16T21:28:49.196-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : maximumPoolSize.................10

2026-06-16T21:28:49.196-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : metricRegistry..................none

2026-06-16T21:28:49.196-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : metricsTrackerFactory...........com.zaxxer.hikari.metrics.micrometer.MicrometerMetricsTrackerFactory@36d5dfb3

2026-06-16T21:28:49.197-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : minimumIdle.....................10

2026-06-16T21:28:49.197-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : password........................<masked>

2026-06-16T21:28:49.197-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : poolName........................"HikariPool-1"

2026-06-16T21:28:49.197-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : readOnly........................false

2026-06-16T21:28:49.197-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : registerMbeans..................false

2026-06-16T21:28:49.197-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : scheduledExecutor...............none

2026-06-16T21:28:49.198-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : schema..........................none

2026-06-16T21:28:49.198-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : threadFactory...................internal

2026-06-16T21:28:49.198-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : transactionIsolation............default

2026-06-16T21:28:49.198-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : username........................"postgres"

2026-06-16T21:28:49.198-05:00 DEBUG 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariConfig : validationTimeout...............5000

2026-06-16T21:28:49.198-05:00 INFO 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...

2026-06-16T21:28:49.491-05:00 INFO 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@3cbdd7e4

2026-06-16T21:28:49.498-05:00 INFO 10852 --- [nio-8081-exec-8] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.

2026-06-16T21:28:49.517-05:00 INFO 10852 --- [nio-8081-exec-8] org.kie.kogito.app.UserTasks : Registering user task _3597E33A-1C00-41B3-924E-09EA47F79D93 with task name null

2026-06-16T21:28:49.612-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0)

2026-06-16T21:28:49.677-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@6ecbda27

2026-06-16T21:28:49.711-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0)

2026-06-16T21:28:49.774-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@600c298e

2026-06-16T21:28:49.807-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0)

2026-06-16T21:28:49.881-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@111bcf56

2026-06-16T21:28:49.925-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0)

2026-06-16T21:28:50.001-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@10dac4a2

2026-06-16T21:28:50.043-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0)

2026-06-16T21:28:50.120-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@691a76e7

2026-06-16T21:28:50.164-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0)

2026-06-16T21:28:50.247-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@411edcfa

2026-06-16T21:28:50.289-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0)

2026-06-16T21:28:50.355-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@e30caf0

2026-06-16T21:28:50.394-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0)

2026-06-16T21:28:50.451-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@4809e040

2026-06-16T21:28:50.482-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0)

2026-06-16T21:28:50.534-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@721e1ae8

2026-06-16T21:28:50.570-05:00 DEBUG 10852 --- [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0)

2026-06-16T21:29:18.088-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)

2026-06-16T21:29:18.089-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.

2026-06-16T21:29:48.099-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)

2026-06-16T21:29:48.099-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.

2026-06-16T21:30:18.101-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)

2026-06-16T21:30:18.102-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.

2026-06-16T21:30:48.114-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)

2026-06-16T21:30:48.115-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.

2026-06-16T21:31:18.130-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)

2026-06-16T21:31:18.130-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.

2026-06-16T21:31:48.135-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)

2026-06-16T21:31:48.135-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.

2026-06-16T21:32:18.145-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0)

2026-06-16T21:32:18.145-05:00 DEBUG 10852 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled.

Alex Porcelli

unread,
Jun 17, 2026, 10:16:03 AM (10 days ago) Jun 17
to kogito-de...@googlegroups.com
I'd recommend first that you upgrade to the latest (10.2.0), and you
could also check this reference project for compact architecture for
SpringBoot: https://github.com/porcelli/process-compact-architecture-springboot
> --
> You received this message because you are subscribed to the Google Groups "Kogito development mailing list" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to kogito-developm...@googlegroups.com.
> To view this discussion visit https://groups.google.com/d/msgid/kogito-development/4ea3cedc-cf0f-4776-b5d6-d52f8d6e8c19n%40googlegroups.com.
Reply all
Reply to author
Forward
0 new messages