spring boot default H2 jdbc connection (and H2 console)
问题 I am simply trying to see the H2 database content for an embedded H2 database which spring-boot creates when I don't specify anything in my application.properties and start with mvn spring:run. I can see hibernate JPA creating the tables but if I try to access the h2 console at the URL below the database has no tables. http://localhost:8080/console/ I see suggestions like this one: View content of embedded H2 database started by Spring But I don't know where to put the suggested XML in spring