H2 控制台访问 h2 以外的数据库

发布于 2024-09-09 08:44:44 字数 266 浏览 4 评论 0原文

H2 控制台 (http://localhost:8082/login.jsp) 可以选择查看以下详细信息任何数据库,如果我们要与 mysql 或其他数据库服务器通信,我们应该在哪里复制 jdbc 驱动程序。复制 bin 目录下的 jdbc 驱动程序文件(mysql-connector-java-5.0.8-bin.jar)似乎没有帮助

注意:我的 H2 服务器作为服务运行

H2 console (http://localhost:8082/login.jsp) has the option to look at details of any database, where should we copy the jdbc driver if we have tp talk to the mysql or other database servers. Copying the jdbc driver file (mysql-connector-java-5.0.8-bin.jar) under bin directory didn't seem to help

Note: My H2 server is running as a service

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酸甜透明夹心 2024-09-16 08:44:44

如果要使用其他数据库(例如MySQL),需要在安装服务之前将这些数据库的JDBC驱动程序的位置添加到环境变量H2DRIVERS或CLASSPATH中。可设置多个驱动程序;每个条目需要用 ; 分隔(Windows) 或 :(其他操作系统)。支持路径名中的空格。不得引用设置。

To use other databases (for example MySQL), the location of the JDBC drivers of those databases need to be added to the environment variables H2DRIVERS or CLASSPATH before installing the service. Multiple drivers can be set; each entry needs to be separated with a ; (Windows) or : (other operating systems). Spaces in the path names are supported. The settings must not be quoted.

无敌元气妹 2024-09-16 08:44:44

当我启动服务器时,我只是将驱动程序放在 classpath 上:

classpath=.:/opt/h2/bin/h2.jar:/opt/derby/lib/derby.jar:...
server=org.h2.tools.Server
java -cp ${classpath} ${server} -tcp -web ... &

或者,这是您可能将 JAR 添加到其中一个 JAR 的罕见情况之一。代码>java.ext.dirs。您可以查看您的平台上可用的内容:

System.out.println(System.getProperty("java.ext.dirs"));

I just put the driver(s) on the classpath when I start the server:

classpath=.:/opt/h2/bin/h2.jar:/opt/derby/lib/derby.jar:...
server=org.h2.tools.Server
java -cp ${classpath} ${server} -tcp -web ... &

Alternatively, this is one of the rare times you might add a JAR to one of the java.ext.dirs. You can see what's available on your platform:

System.out.println(System.getProperty("java.ext.dirs"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文