如何在OpenShift上启动与JDBC的连接? [英] How to initiate connection with JDBC on OpenShift?

查看:107
本文介绍了如何在OpenShift上启动与JDBC的连接?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在本地主机上工作时,为了启动与JDBC的连接,请执行以下操作:

When I work on my localhost , in order to initiate a connection with JDBC , I do this :

String USERNAME = "...";
String PASSWORD = "...";
String DB_NAME = "...";
String FORNAME_URL = "com.mysql.jdbc.Driver";
String URL = "jdbc:mysql://localhost";
Connection m_connection = DriverManager.getConnection(URL , USERNAME , PASSWORD);

但这在OpenShift上不起作用,没有建立连接.

But this doesn't work on OpenShift , no connection is established .

当我在OpenShift上运行它时,我看不到异常,但是我确认(我在OpenShift上检查了数据库,它的查询尚未更新)未建立连接

I can't see the exception that I'm getting when I run it on OpenShift ,but I validated (I checked the DB on OpenShift , it hasn't been updated with my queries) that the connection is not established

任何想法如何解决?

推荐答案

这不适用于OpenShift,因为OpenSHift公开了必须在应用程序中使用的一组环境变量.您不能使用localhost等属性.请使用以下内容:

This will not work on OpenShift because OpenSHift expose a set of environment variables that you have to use in your application. You can't use localhost, etc properties. Please use following:

String USERNAME = System.getEnv("OPENSHIFT_MYSQL_DB_USERNAME");
String PASSWORD = System.getEnv("OPENSHIFT_MYSQL_DB_PASSWORD");
String DB_NAME = System.getEnv("OPENSHIFT_APP_NAME");
String FORNAME_URL = "com.mysql.jdbc.Driver";
String URL = "jdbc:"+System.getEnv("OPENSHIFT_MYSQL_DB_URL")+ DB_NAME;
Connection m_connection = DriverManager.getConnection(URL , USERNAME , PASSWORD);

这篇关于如何在OpenShift上启动与JDBC的连接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆