heroku postgres未连接

jv2fixgn  于 2021-06-26  发布在  Java
关注(0)|答案(0)|浏览(169)

我在heroku上有一个正在工作的应用程序,无法连接到heroku上分配的数据库
获取连接的方法:

public static Connection connect() {
    Connection conn = null;
    try {
        conn = DriverManager.getConnection(System.getenv("JDBC_DATABASE_URL"));
        System.out.println("Connected to the PostgreSQL server successfully.");
    } catch (SQLException e) {
        System.out.println(e.getMessage());
    }

    return conn; 
}

我在api rest上用另一个方法检查它:

@Path("/db")
@GET
public Response dbWorks() {
    Connection conn = DBManager.connect();

    if(conn != null) {
        return Response.status(200).entity(conn).build();
    }
    return Response.status(400).entity(conn).build();
}

即使我自己写,我也不工作jdbc:postgresql://host:port/databasename 用heroku给我的所有数据。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题