0

How can I use both in same SpringBoot project? Will it not create conflict which one is going to create tables?

jarlh
  • 42,561
  • 8
  • 45
  • 63

1 Answers1

1

Liquibase is Version Control System dedicated for track, version, and deploy database schema changes.

Hibernate is an object-relational mapping (ORM) tool for the Java programming language which provides a framework for mapping an object-oriented domain model to a relational database.

Yes of course you can use both in same Spring Boot project. Check this official guide liquibase + Hibernate for Using Liquibase with Hibernate.

DevThiman
  • 920
  • 1
  • 9
  • 24