How can I have orientdb running in embedded mode in a spring boot server and have studio available as to interact with the database and perform ad-hoc-queries in the data generated by the app.
You have two ways of using an embedded db:
just open it from the physical path, using ODatabaseDocumentTx
new ODatabaseDocumentTx("plocal:/the/path/to/the/db")
This will just open the db, with no additional services
This second option will also start an HTTP server and will expose Studio