我无法从Google App Engine上已部署的后端Servlet连接到我的Google Cloud sql数据库

问题描述 投票:0回答:1

我已经完成了我所需的一切,而我在Google App Engine上部署的后端Servlet没有与我的Google Cloud数据库建立任何连接,而最糟糕的部分是,我的App Engine日志甚至没有显示任何内容。完全没有错误,显示为“ POST / hello HTTP / 1.1” 200 46 ...我真的不明白过去5天的情况。

这些是我在下面所做的事情:

这是我的servlet代码:

 public class MyServlet extends HttpServlet {   
        @Override  
        public void doGet(HttpServletRequest req, HttpServletResponse resp)
                throws IOException {    
            resp.setContentType("text/plain");  
            resp.getWriter().println("Please use the form to POST to this url");  
        }

    @Override
    public void doPost(HttpServletRequest req, HttpServletResponse resp)
            throws IOException {

        String url = null;
        resp.setContentType("text/html");
        PrintWriter out = resp.getWriter();

        try {
           if (SystemProperty.environment.value() ==
                   SystemProperty.Environment.Value.Production) {
              // Connecting from App Engine.

                // Load the class that provides the new "jdbc:google:mysql://" prefix.
            Class.forName("com.mysql.jdbc.GoogleDriver");
            url = "jdbc:google:mysql://festive-shark-90408:daily-joy-project/database?user=joys";

           } else {
                // Local MySQL instance to use during development.
             Class.forName("com.mysql.jdbc.Driver");
             url = "jdbc:mysql://<cloud-sql-instance-ip>:3306/database?user=joys";

                // Alternatively, connect to a Google Cloud SQL instance using:

           }
        } catch (Exception e) {
            e.printStackTrace();

        }


        try {
            Connection conn = DriverManager.getConnection(url);
            try {

                String fname = req.getParameter("name");
              //  String content = req.getParameter("message");


                    String statement = "INSERT INTO message (tags, posts, date, datetime) VALUES( ? , 'message', now(), now() )";
                    PreparedStatement stmt = conn.prepareStatement(statement);
                    stmt.setString(1, fname);
                   // stmt.setString(2, content);
                    int success = 2;
                    success = stmt.executeUpdate();
                    if (success == 1) {
                        out.println(
                                "<html><head></head><body>Success! Redirecting in 3 seconds...</body></html>");
                    } else if (success == 0) {
                        out.println(
                                "<html><head></head><body>Failure! Please try again! " +
                                        "Redirecting in 3 seconds...</body></html>");
                    }



            } finally {
                conn.close();
            }
        } catch (SQLException e) {
            e.printStackTrace();
        }



    }

    }

在我的appengine-web.xml中,以下是参数:

应用价值:Celebration-shark-90408

版本值:app-001

线程安全值:true

use-google-connector-j值:true

系统属性:

    property name="java.util.logging.config.file" value="WEB-INF/logging.properties" 

我的Android Studio使用的是JDK 1.7.0_72

我的appengine sdk是appengine-java-sdk-1.9.18

我已经在我的云SQL中设置了访问控制,以授权我的App Engine应用程序并授权我的网络IP。

我已经成功部署了后端Servlet,无论何时向Servlet发出发布请求,我的应用引擎日志都只会显示以下内容:

203.106.176.214--[04 / Apr / 2015:04:43:17 -0700]“ POST / hello HTTP / 1.1” 200 45-“ Mozilla / 5.0(Windows NT 6.1; WOW64)AppleWebKit / 537.36(KHTML,like Gecko )Chrome / 41.0.2272.118 Safari / 537.36“” festive-shark-90408.appspot.com“ ms = 39 cpu_ms = 76 cpm_usd = 0.000005实例= 00c61b117c0b660d29c1e893219b346d423915 app_engine_release = 1.9.18

表示成功,因为状态码为200。

此后根本不查询我的cloud sql数据库,但是每当我在便携式计算机上本地运行服务器时,一切正常,并且cloud sql得到连接。

它只是不适用于我的应用程序引擎。

为什么? 我真的不明白问题出在哪里。

java mysql google-app-engine servlets google-cloud-sql
1个回答
1
投票

我弄清楚出了什么问题..

首先,从应用程序引擎连接到Cloud SQL数据库时,我本打算使用root作为用户名。

其次,我本打算将App Engine项目标题从其默认名称更改为我想要赋予的名称。(我仍然不知道为什么这会影响它)

© www.soinside.com 2019 - 2024. All rights reserved.