如何在Java Web应用程序中访问Heroku ClearDB?

时间:2018-05-08 05:59:51

标签: java database hibernate

我已经完成了ClearDB的附加Heroku,我希望在我的Java Web应用程序中使用Hibernate访问该数据库。

我也添加了与MySQL workbench的连接。

1 个答案:

答案 0 :(得分:0)

您必须将以下属性添加到 hibernate.cfg.xml 文件中。

<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://us-cdbr-iron-east-03.cleardb.net:3306/heroku_123456789?zeroDateTimeBehavior=convertToNull</property>
<property name="hibernate.connection.username">my_username</property>
<property name="hibernate.connection.password">my_passsword</property>

请注意, hibernate.connection.url 的属性值仅为示例。但它有URL格式。您已将其替换为您自己的网址。

hibernate.connection.username hibernate.connection.password 的属性值也应该替换。