Reputation: 642
I trying to make a project using the Spring Initializr wizard and I already have a database, so I want to generate entities classes using Spring Boot and IntelliJ Idea.
Upvotes: 36
Views: 82812
Reputation: 1105
If you are using IntelliJ Idea's newer version (2022 or so) and not able to find the option in step 3 "Generate by Database Schema
" in the accepted answer above then use the following:
Step 1: Create DataSource (as you create for database in Idea)
Step 2: Add JPA Hibernate Facet through File -> Project Structure ->Facets
Step 3: Generate Entities: In the Database window,
These steps are verified and found working in IntelliJ IDEA 2022.3.3 (Ultimate Edition)
Upvotes: 1
Reputation: 961
Prerequisites are:
Then you have to do these things:
Generate by Database Schema
. The dialog will let you select the tables you want to use, the rest should be up to you.Upvotes: 30