Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 java 应用程序中使用 h2 db。我正在使用 H2 控制台查看数据库的内容,但它仅在没有其他应用程序访问数据库时才有效。有没有办法在其他一些应用程序也在访问同一个数据库时打开 h2 控制台?
为了能够从多个应用程序连接,您可以将数据库配置为接受 tcp 连接。基本上,您可以通过jdbc:h2:tcp在您的数据库 url 中使用来做到这一点。
jdbc:h2:tcp
在此处阅读有关此内容的更多信息。