From A12 Version 2025.06-ext4 we get permanent ERROR-logs at every start of Dataservices-Application and can’t fix it:
2026-05-12 18:35:48.636 [ ] INFO [bv2,,] 18412 --- [ restartedMain] org.reflections.Reflections : Reflections took 80 ms to scan 13 urls, producing 332 keys and 1299 values
2026-05-12 18:35:48.766 [ ] INFO [bv2,,] 18412 --- [ restartedMain] org.reflections.Reflections : Reflections took 38 ms to scan 13 urls, producing 332 keys and 1299 values
2026-05-12 18:35:48.996 [ ] ERROR [bv2,,] 18412 --- [ restartedMain] com.zaxxer.hikari.HikariConfig : HikariPool-3 - dataSource or dataSourceClassName or jdbcUrl is required.
2026-05-12 18:35:48.996 [ ] ERROR [bv2,,] 18412 --- [ restartedMain] com.zaxxer.hikari.HikariConfig : HikariPool-3 - dataSource or dataSourceClassName or jdbcUrl is required.
2026-05-12 18:35:49.000 [ ] ERROR [bv2,,] 18412 --- [ restartedMain] com.zaxxer.hikari.HikariConfig : HikariPool-4 - dataSource or dataSourceClassName or jdbcUrl is required.
2026-05-12 18:35:49.002 [ ] ERROR [bv2,,] 18412 --- [ restartedMain] com.zaxxer.hikari.HikariConfig : HikariPool-4 - dataSource or dataSourceClassName or jdbcUrl is required.
2026-05-12 18:35:49.108 [ ] INFO [bv2,,] 18412 --- [ restartedMain] .u.c.r.c.UAARestClientPropertiesResolver : Resolve properties for: LOCAL
2026-05-12 18:35:50.329 [ ] INFO [bv2,,] 18412 --- [ restartedMain] c.m.a.u.a.u.i.UAALocalUserManager : Loaded [7] local users.
Here is the debug state, when error occurs:
it happens during initialisation of HikariPool-1:
Our analyzings:
HikariPool-3 and HikariPool-4 arise because the A12 monitoring component—via reflection—erroneously accesses the existing data sources (Pool-3 from Pool-1/dataservices; Pool-4 from Pool-2/contentstore), thereby triggering `getConnection()`.
Consequently, Hikari is launched on partially initialized objects, which leads to the error logs, even though the actual data sources are correctly configured.
Could the reason be an A12-configuration property, what we should set? Didn’t found something about in rest_monitor_configuration_properties_rest_api.
The errors seem not to have impact to our application. Everything runs ok. But the ERROR loggs are very unwanted in production. They didn’t occured in A12 Version 2025.06-ext2 and before.
Another thing I noticed in that context is a warning in browser console when a buttonEvent in an overview is triggert:
Best Regards, Gunther



