Looking for a tool to view/manage Database created by JPA [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it ca开发者_运维知识库n be answered with facts and citations.
Closed 8 years ago.
Improve this questionI am developing an application with play framework and JPA/Hibernate for the database. I reached a stage that I need to see how the database looks like to check my code correctness. I have tried CRUD module but it's very limited. I need a tool that I can use to see and navigate the database created under the hood by JPA. Thanks in advance
Did you check squirrel?
Try the new database view in Play 1.2 http://localhost:9000/@db
Simple but useful ;)
I like Db Visualizer which has a free community edition and it has a feature that creates diagrams of tables associated with the one you have currently selected in the tree view. I use it to analyze how Hibernate creates tables for me during the design/JPA annotation phase. This is the best tool I have used for this work.
If you can pay some money, I really like Aqua Data Studio, it has a diagram generation feature that is pretty cool.
If you are using MySQL then you may consider MySQL Workbench it also has a feature to generate diagrams out of your current tables.
If you use Oracle DB or MySQL, your best option is SQL Developer, one of best in its kind.
To get mysql connectivity, you need to select Preferences/Extensions and check update on 3rd party extensions: you will see the MySQL driver show up.
精彩评论