ClassNotFoundException:com.mysql.jdbc.GoogleDriver [英] ClassNotFoundException: com.mysql.jdbc.GoogleDriver

查看:81
本文介绍了ClassNotFoundException:com.mysql.jdbc.GoogleDriver的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我不知道在将项目托管在APP ENGINE中时如何引发此错误,我只是为了分析而添加了许多日志记录.当我从本地使用ip使用com.mysql.jdbc.Driver时,它可以工作.请帮忙!!

I wonder how come this error is thrown while hosting my project in APP ENGINE, I have added lots of logging just for analysis sake. When I use the com.mysql.jdbc.Driver using ip from my local it works. Kindly help !!

    String name = "Vinodh";
    String url = null;
    try {
        Class.forName("com.mysql.jdbc.GoogleDriver");
        url = "jdbc:google:mysql://xxxxxxx:xxxxxx/vinodh?user=root&password=xxxxxx";

        // Statements allow to issue SQL queries to the database
        log.info("Initiate Connection");
        Connection conn = DriverManager.getConnection(url);
        log.info("Got Connection");
        Statement statement = conn.createStatement();
        // Result set get the result of the SQL query
        ResultSet resultSet = statement

                .executeQuery("select * from Family");
        log.info("Entering While");
        while(resultSet.next()){
             log.info("Entered While");
            String test = resultSet.getString("Name");
            System.out.println(test);

            name = test+test+test;
        }

推荐答案

正如本教程所介绍的那样,在开发过程中,您应该使用普通的mysql驱动程序,而只有appengine使用Google mysql驱动程序

As shwown in this tutorial, during development you should use the normal mysql driver and only appengine use the Google mysql driver

  if (SystemProperty.environment.value() ==
      SystemProperty.Environment.Value.Production) {
    // Load the class that provides the new "jdbc:google:mysql://" prefix.
    Class.forName("com.mysql.jdbc.GoogleDriver");
    url = "jdbc:google:mysql://your-project-id:your-instance-name/guestbook?user=root";
  } else {
    // Local MySQL instance to use during development.
    Class.forName("com.mysql.jdbc.Driver");
    url = "jdbc:mysql://127.0.0.1:3306/guestbook?user=root";
  }

还要再次检查您是否为应用程序启用了 MySQL Connector/J (默认情况下未完成)

Also double check that you have enabled MySQL Connector/J for your application (it's not done by default)

https://developers.google.com/appengine/docs /java/cloud-sql/#enable_connector_j

<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
  ...
  <use-google-connector-j>true</use-google-connector-j>
</appengine-web-app>

这篇关于ClassNotFoundException:com.mysql.jdbc.GoogleDriver的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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