Search code examples
javadatabasehibernateeclipselinkwildfly

How to view the database tables in application servers?


I'm writing Java objects to the built in database using JPA methods like EntityManager#persist and persist. The entity is now stored in a table database. How can I view the contents of the database? I want to see how the object graph was mapped to tables, check how much storage it takes, and so on.

I'm using Wildfly 10.1, Hibernate or EclipseLink and whatever the default database is. I looked in the management console but didn't find the tables. I'm not looking for a software recommendation, tutorial etc. Just for steps to view the database.


Solution

  • It is apparently impossible to view the database through Wildfly or any other built in means in the IDE.