Search code examples
javaspringspring-bootjpasequelize-auto

what is equivalent with sequelize-auto in spring framework?


I want to implement database schema work in mysqlworkbench and sync the database model to spring framework with JPA. I did the same when I made server side application with Node.js. by using sequelize-auto as below command.

sequelize-auto -h <host> -d <database name> -u <user name> -p <port> -o <path> -x password -e mysql

I want to know if there is same or similar way to work in JAVA spring frame work with JPA.


Solution

  • You can find Hibernate Tools here:

    https://github.com/hibernate/hibernate-tools