I want to generate model Class from mysql database, but I cannot find the persistence tool window which is easily searched in IDEA 14.
4 Answers
If you haven't included JavaEE Persistance when you created your project as @Freek de Bruijn suggested, you can go into:
File - > Project Structure - > Modules -> + -> "JPA"
That will enable persistence
under Tool windows
as well if, like me, you checked out your project from version control. Took me quite a bit of time to find that setting actually.
-
Well hidden feature. – sakra May 15 '19 at 06:26
The persistence support is available in IntelliJ IDEA Ultimate Edition (and not in the Community Edition, I think). When you create a new project in for example IntelliJ IDEA 15.0.3 EAP (build 143.1453.5), the New Project dialog opens:
There you can for example select "Java Enterprise" in the left panel and "JavaEE Persistence (2.0)" in the "Additional Libraries and Frameworks" list. Now the Persistence panel can be opened via the View | Tool Windows | Persistence menu. The Persistence panel is visible here in the bottom left part:

- 3,552
- 2
- 22
- 28
-
@gloomy.penguin: if you want to add JavaEE Persistence to your project later, you can follow the advice from [Mr D](http://stackoverflow.com/users/2180290/mr-d): http://stackoverflow.com/a/36052050/1694043. – Freek de Bruijn Jul 17 '16 at 15:40
Echoing what @0x6C38 said here. File-> Project Structure -> Modules -> + then type in JPA.

- 1,687
- 2
- 19
- 36
If the persistence tool window is not visible then maybe it will help to add the Framework Support with this:
In the project window. Right click at the name then 'Add Framework Support...'
Enable here the JPA support.

- 1,071
- 14
- 15