尝试从Java代码连接到postgres时出现致命身份验证错误

时间:2018-03-19 14:16:10

标签: java postgresql jdbc

当我尝试从bash连接到Postgres时,它可以正常工作而无需输入密码:

psql -U postgres

当我尝试从Java代码连接时,它说:

org.postgresql.util.PSQLException: FATAL: password authentication failed for user "postgres"

我如何尝试连接:

 con = DriverManager.getConnection("jdbc:postgresql://localhost:5432/mydb?autoReconnect=true", "postgres", "");

我做错了什么?

0 个答案:

没有答案