Home > Software engineering >  what is equivalent with sequelize-auto in spring framework?
what is equivalent with sequelize-auto in spring framework?

Time:07-02

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.

CodePudding user response:

You can find Hibernate Tools here:

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

  • Related