forked from GoogleCloudPlatform/java-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPostgreSqlServlet.java
More file actions
96 lines (85 loc) · 3.27 KB
/
Copy pathPostgreSqlServlet.java
File metadata and controls
96 lines (85 loc) · 3.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.appengine.postgresql;
import com.google.common.base.Stopwatch;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.util.Date;
import java.util.concurrent.TimeUnit;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
// [START example]
@SuppressWarnings("serial")
// With @WebServlet annotation the webapp/WEB-INF/web.xml is no longer required.
@WebServlet(name = "PostgreSQL",
description = "PostgreSQL: Write timestamps of visitors to PostgreSQL",
urlPatterns = "/postgresql")
public class PostgreSqlServlet extends HttpServlet {
Connection conn;
@Override
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException,
ServletException {
final String createTableSql = "CREATE TABLE IF NOT EXISTS visits ( "
+ "visit_id SERIAL NOT NULL, ts timestamp NOT NULL, "
+ "PRIMARY KEY (visit_id) );";
final String createVisitSql = "INSERT INTO visits (ts) VALUES (?);";
final String selectSql = "SELECT ts FROM visits ORDER BY ts DESC "
+ "LIMIT 10;";
String path = req.getRequestURI();
if (path.startsWith("/favicon.ico")) {
return; // ignore the request for favicon.ico
}
PrintWriter out = resp.getWriter();
resp.setContentType("text/plain");
Stopwatch stopwatch = Stopwatch.createStarted();
try (PreparedStatement statementCreateVisit = conn.prepareStatement(createVisitSql)) {
conn.createStatement().executeUpdate(createTableSql);
statementCreateVisit.setTimestamp(1, new Timestamp(new Date().getTime()));
statementCreateVisit.executeUpdate();
try (ResultSet rs = conn.prepareStatement(selectSql).executeQuery()) {
stopwatch.stop();
out.print("Last 10 visits:\n");
while (rs.next()) {
String timeStamp = rs.getString("ts");
out.println("Visited at time: " + timeStamp);
}
}
} catch (SQLException e) {
throw new ServletException("SQL error", e);
}
out.println("Query time (ms):" + stopwatch.elapsed(TimeUnit.MILLISECONDS));
}
@Override
public void init() throws ServletException {
String url = System.getProperty("cloudsql");
log("connecting to: " + url);
try {
conn = DriverManager.getConnection(url);
} catch (SQLException e) {
throw new ServletException("Unable to connect to PostgreSQL", e);
}
}
}
// [END example]