Spring boot postgresql create database if not exists

Spring boot postgresql create database if not exists Since all Postgres installations come with a default database, technically it should be possible to connect to it at the very beginning (when the application starts) and then to call CREATE DATABASE This is something you could do programmatically before spring initializes, but after the properties are read, for example in … ................
................