Thanks for the pointer.
Issue is related to connection pool sizes setting causing quick consumption of connections from the DB, and reaching the max_connections (100) set in PostgreSQL Server. There after any further request for getting connection results in "Too many connections" error.
In fact there were other applications, and PgAdmin tool connecting to the same database that resulted in reaching that condition earlier than what the settings conveyed
# "Too many connections" setting
jdbc.default.maxPoolSize=100
jdbc.default.minPoolSize=10
# Setting that fixed the issue
jdbc.default.maxPoolSize=50
jdbc.default.minPoolSize=10
jdbc.default.maxIdleTimeExcessConnections=60
The issue is now fixed
Be kell jelentkezni ahhoz, hogy ez helytelenként legyen megjelölve.