Android Studio

时间:2015-05-18 23:08:42

标签: java android sql google-app-engine jdbc

我在Android Studio中有一个项目,其中包含 Google Cloud Endpoints 模块。我尝试将我的端点模块连接到我在同一个项目中的 Google Cloud SQL 实例。

在IDE中,我看到以下错误:

Unhandled exception: java.lang.ClassNotFoundException

我的gradle构建显示:

Error:(82, 26) error: unreported exception ClassNotFoundException; must be caught or declared to be thrown 
Error:(87, 26) error: unreported exception ClassNotFoundException; must be caught or declared to be thrown

我在appengine-web.xml

中启用了J接口

enter image description here

我不确定要将我的SQL数据库连接到我的Google App Engine需要做什么。它似乎比我想象的要复杂得多。

我的代码:

@ApiMethod(name = "getLesson")
public Lesson getLesson(@Named("id") Long id) {

    Lesson l = new Lesson();

    l.setLessonId(345);
    l.setLessonColour("Blue");
    l.setLessonImage("itshappening.gif");



    String url = null;
    if (SystemProperty.environment.value() ==
            SystemProperty.Environment.Value.Production) {
        // Connecting from App Engine.
        // Load the class that provides the "jdbc:google:mysql://"
        // prefix.
        Class.forName("com.google.cloud.sql.jdbc.Driver");
        url =
                "jdbc:google:mysql://app:instance?user=root";
    } else {
        // Connecting from an external network.
        Class.forName("com.mysql.jdbc.Driver");
        url = "jdbc:mysql://000.000.000.000:3306?user=root";
    }

    Connection conn = null;
    try {
        conn = DriverManager.getConnection(url);
    } catch (SQLException e) {
        l.setLessonDescription(e.getStackTrace().toString());
    }

    try {
        ResultSet rs = conn.createStatement().executeQuery(
                "SELECT 1 + 56");
    } catch (SQLException e) {
        e.printStackTrace();
    }

    logger.info("Calling getLesson method");

    return l;
}

任何帮助,评论或指导将不胜感激。

2 个答案:

答案 0 :(得分:1)

ClassNotFoundException是一个已检查的异常,因此您必须捕获它或抛出它,如错误所示。

遵循当前的异常处理方案:

try {
    Class.forName("com.google.cloud.sql.jdbc.Driver");
} catch (ClassNotFoundException e) {
    l.setLessonDescription(e.getStackTrace().toString());
}

答案 1 :(得分:1)

当无法找到给定的类时,方法Class.forName()将抛出ClassNotFoundException

由于FlagIsSetchecked exception,您实际上必须处理可能发生的问题。您可以通过将其传递给调用方法来完成此操作。为此,您必须将其添加到方法的签名中:

ClassNotFoundException

然后调用当前方法的方法必须处理它。

或者,您也可以使用try/catch block

直接在当前方法中处理它
@ApiMethod(name = "getLesson")
public Lesson getLesson(@Named("id") Long id) throws ClassNotFoundException {
    // ...

在此示例中,它将简单地将异常的堆栈跟踪打印到try { // ... Class.forName("com.google.cloud.sql.jdbc.Driver"); // ... } catch (ClassNotFoundException e) { e.printStackTrace(); } 。您可以将错误处理更改为您想要的任何内容。