我在将DB2与hibernate连接时遇到问题。
错误:-
org.hibernate.HibernateException:数据库[DB2 / LINUXX8664]未知的DatabaseDialectMapper
我的配置是:-
String url="jdbc:db2://10.4.0.71:50000/"+databasename2+":retrieveMessagesFromServerOnGetMessage=true;securityMechanism=3;";
try {
cfg = new Configuration()
//add these resources from property file
.addResource(ReadProperty.dictProjectVar.get("hbmFilePath"))
.setProperty("dialect","org.hibernate.dialect.DB2Dialect")
.setProperty("hibernate.connection.driver_class", "com.ibm.db2.jcc.DB2Driver")
.setProperty("hibernate.connection.username","db2inst1")
.setProperty("hibernate.connection.password","Pyramid123")
.setProperty("hibernate.connection.url", url)
.setProperty("hibernate.connection.pool_size", "5")
.setProperty("hbm2ddl.auto", "create")
.setProperty("show_sql","true");
}
catch(Exception e) {
e.printStackTrace();
}
我已将db2jcc和db2jcc4 jar添加到我的类路径中。 数据库安装在ubuntu计算机上,是一个试用版。
谢谢, 阿蒂亚
答案 0 :(得分:0)
我相信6号线应该是
.setProperty(“ hibernate.dialect”,“ org.hibernate.dialect.DB2Dialect”)
此外,您可以参考此链接以获取更多信息。 how to connect hibernate and DB2