我正在尝试将我在Heroku中部署的网络应用与其提供的postgre
数据库相连接。
我按照this site给出的说明部署了我的应用,但它发出了以下错误消息
No suitable driver found for jdbc:postgresql://ec2-184-73-222-90.compute-1.amazonaws.com:5432/d9l4hq0c2h46o6?user=wyhgmwybghpndl&password=kWxLQ_y2risoVSFbzTKR_YsUFF&sslmode=require
我尝试了here和here给出的建议,但没有成功。
我还在我的构建路径中添加了postgresql-9.4.1211.jre6.jar
作为外部JARS。
以下是我的 Test.java ,它收到GET
请求并尝试连接到Heroku数据库
import java.net.URI;
import java.net.URISyntaxException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
@Path("wallpost")
public class wallpost {
private static String connectionMsg = null;
private static final String DATABASE_URL = "DATABASE_URL";
private static final String JDBC_POSTGRE = "jdbc:postgresql://" ;
private static final String JDBC_DATABASE_URL = "JDBC_DATABASE_URL";
@GET
@Produces(MediaType.TEXT_PLAIN)
public String getPosts() {
Connection conn = null;
try {
conn = tryAndConnectToDB();
} catch (SQLException e) {
connectionMsg = e.getMessage();
} catch (URISyntaxException e) {
connectionMsg = e.getMessage();
e.printStackTrace();
}
if (conn != null)
try {
return "Oops!! No posts made yet!!" + conn.getSchema();
} catch (SQLException e) {
e.printStackTrace();
}
return connectionMsg;
}
private static Connection tryAndConnectToDB() throws URISyntaxException, SQLException {
try {
Class.forName("org.postgresql.Driver");
}
catch (ClassNotFoundException e) {
connectionMsg = e.getMessage();
}
final String dbUrl = System.getenv(JDBC_DATABASE_URL);
//URI dbURI = new URI(System.getenv(DATABASE_URL));
// final String userName = dbURI.getUserInfo().split(":")[0];
// final String userPassword = dbURI.getUserInfo().split(":")[1];
//
// final String dbURL = JDBC_POSTGRE + dbURI.getHost() + ":" + dbURI.getPort() + dbURI.getPath();
// return DriverManager.getConnection(dbURL,userName,userPassword);
return DriverManager.getConnection(dbUrl);
}
}
感谢您的时间!
答案 0 :(得分:1)
首先,您需要重置数据库凭据,因为您已公开发布它们。运行此命令:
heroku pg:credentials DATABASE --reset
该错误消息表明您的类路径上没有Postgres JDBC驱动程序。
postgresql-9.4.1211.jre6.jar
几乎肯定不是你想要的JAR。它适用于Java 6.而且你不想让它成为外部依赖。
在pom.xml
中,你应该拥有:
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4-1211</version>
</dependency>