I have a Spring boot application that uses JPA with Hibernate. It already connect to a primary data source for all transactions.
Now the task in hand is that I need to dynamically create Database Schema in a different database. For instance,
For project 1, create schema 1 in Database X For project 2, create schema 2 in Database X
Later, these databases will be used by others externally. I am looking for the best way to get this done.