Question

I have a java web application which i'm developing using a local embedded HSQL database. Is there kind of a servlet which I can plug-in into my application and expose it /dbconsole, where I can fire sql statements, inspect tables, fields and table data?

Was it helpful?

Solution

I think you can try H2 Database which is a fast java opensource database. It can be easily embedded and it has a build-in servlet (org.h2.server.web.WebServlet) for db admin usage. We have used it in our production several years and it is very stable.

Here's its web console UI rendered by org.h2.server.web.WebServlet: H2 web console

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top