我正在尝试使用JDBC连接到postgres localhost。
Connection connection = DriverManager.getConnection("jdbc:postgresql://localhost/mydb?user=postgres");
然而,当我设置无密码crendential时,代码会一直问我密码。 例如,我可以通过键入
连接到终端上的psqlpsql -U postgres -h localhost
它无需密码即可连接。如何在不向driverManager输入密码的情况下连接到postgres?