I'm trying to figure out if there is a way to configure Spring datasource using a single string that contains all credentials:
postgres://username:secret@localhost/somedb
By far I see that spring.datasource always requires username and password properties to be defined separately and url property to start with jdbc:.
Is there some other way to configure DB connection and use Postgres single string url?
BTW, this url works fine in Python/Django and GoLang.