当我尝试从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", "");
我做错了什么?