且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

出现错误:无法加载JDBC驱动程序类[org.postgresql.Driver]

更新时间:2022-12-01 12:27:54

You can do a simple test in your project to make sure class "org.postgresql.Driver" is on your classpath

try {
  Class.forName("org.postgresql.Driver");
  //on classpath
} catch(ClassNotFoundException e) {
  // not on classpath
}

相关阅读

技术问答最新文章