Art
Art

Reputation: 5924

How can I graph domain models from JPA annotated POJOs?

I want to visualize the relationships between all of my JPA annotated classes. Given that I have a folder full of classes, is there a tool that will just scan all the annotations and provide a visualization/picture of all the relationships?

Upvotes: 1

Views: 510

Answers (1)

Ken Chan
Ken Chan

Reputation: 90497

Yes. Hibernate tool is an eclipse plug-in that has a feature to visualize the structure of entities and the relationships between them.

enter image description here

Upvotes: 3

Related Questions