H2混合模式和DBeaver



我正在尝试连接到Spring应用程序中的本地数据库,这使H2处于混合模式。我正在尝试连接到Dbeaver,但我收到以下消息:

org.h2.jdbc.JdbcSQLInvalidAuthorizationSpecException: Nombre de usuario ó password incorrecto
Wrong user name or password [28000-200]
at org.h2.message.DbException.getJdbcSQLException(DbException.java:461)
at org.h2.message.DbException.getJdbcSQLException(DbException.java:429)
at org.h2.message.DbException.get(DbException.java:205)
at org.h2.message.DbException.get(DbException.java:181)
at org.h2.message.DbException.get(DbException.java:170)
at org.h2.server.TcpServer.checkKeyAndGetDatabaseName(TcpServer.java:527)
at org.h2.server.TcpServerThread.run(TcpServerThread.java:137)
at java.base/java.lang.Thread.run(Thread.java:832)
Nombre de usuario ó password incorrecto
Wrong user name or password [28000-200]

DBeaver:

参数和URL

春季属性:

server.port = 8080
spring.datasource.url=jdbc:h2:file:./data/demo;AUTO_SERVER=TRUE;AUTO_SERVER_PORT=9090;DB_CLOSE_DELAY=-1;PASSWORD=password;USER=sa
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=password
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.h2.console.enabled=true
spring.jpa.hibernate.ddl-auto=update

我尝试了各种方法,但无法从DBeaver连接。有人有类似的问题吗?非常感谢大家!

您只能在本地机器上连接。

为此,请在"按URL连接"中选择,然后在那里输入您的URL。对于连接服务器,您只能与浏览器控制台一起使用http://www.h2database.com/html/features.html#auto_mixed_mode

DBeaver图像。如何连接到本地机器

相关内容

  • 没有找到相关文章

最新更新