我试图在给定电子邮件ID的情况下从Heroku应用数据库中检索所有帖子
我有一个查询类来处理所有请求(现在只是GET
)
以下是 Query.java
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import com.auro.assignment.wallpostapi.model.PostBundle;
@Path("query")
public class Query {
public Query() {
}
@GET
@Produces(MediaType.APPLICATION_JSON)
public PostBundle getPostBundle() {
PostManager postManager = new PostManager();
return postManager.getPostBundle("xyz.123@test.in");
}
}
然后我有一个名为 PostManager 的东西,它将所有帖子与状态代码和消息捆绑在一起。
以下是 PostManager.java
import java.io.PrintWriter;
import java.io.StringWriter;
import java.net.URISyntaxException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import com.auro.assignment.wallpostapi.dbconnection.DBConnectionManager;
import com.auro.assignment.wallpostapi.model.*;
public class PostManager {
private PostBundle postBundle;
private List<Post> posts;
public PostManager() {
postBundle = null;
posts = new ArrayList<>();
}
public PostBundle getPostBundle(final String email) {
try {
Connection connection = DBConnectionManager.getConnection();
final String query = "SELECT user_post, post_time FROM wall_post WHERE user_id = " +
"(SELECT user_id FROM user_info WHERE user_email = ?);";
PreparedStatement preparedStatement = connection.prepareStatement(query);
preparedStatement.setString(1, email);
ResultSet resultSet = preparedStatement.executeQuery();
if (resultSet != null && resultSet.next()) {
while (resultSet.next()) {
posts.add(new Post(resultSet.getString("user_post"),resultSet.getString("post_time")));
}
postBundle = new PostBundle("200","SUCCESS!",posts);
return postBundle;
}
else {
postBundle = new PostBundle("404","NOT FOUND",null);
return postBundle;
}
} catch (ClassNotFoundException | URISyntaxException | SQLException e) {
StringWriter stringWriter = new StringWriter();
PrintWriter printWriter = new PrintWriter(stringWriter);
e.printStackTrace(printWriter);
String stackTrace = stringWriter.toString();
postBundle = new PostBundle("500",stackTrace,null);
return postBundle;
}
}
}
Following is the **PostBundle.java**
import java.util.List;
public class PostBundle {
private String status;
private String message;
private List<Post> posts;
public PostBundle() {
status = null;
message = null;
posts = null;
}
public PostBundle(final String status, final String message, final List<Post> posts) {
this.status = status;
this.message = message;
this.posts = posts;
}
public String getStatus() {
return status;
}
public String getMessage() {
return message;
}
public List<Post> getPosts() {
return posts;
}
}
最后,以下是 Post.java
public class Post {
private String data;
private String date;
public Post() {
data = null;
date = null;
}
public Post(final String data, final String date) {
this.data = data;
this.date = date;
}
public String getData() {
return data;
}
public String getDate() {
return date;
}
}
返回一个空白JSON
我如何设计架构有什么问题吗?我猜测发生了某种内部错误,但在PostManager方法中,我确保任何错误堆栈跟踪也被捆绑,但我得到一个绝对的空白屏幕。
答案 0 :(得分:2)
我在这里看到一些错误:
首先,您致电resultSet.next()
两次
// Initially the cursor is positioned before the first row.
ResultSet resultSet = preparedStatement.executeQuery();
if (resultSet != null && resultSet.next()) { // The cursor is moved to the first row
while (resultSet.next()) { // The cursor is moved to the second row, so you skipped the
// first result and it only iterates from second to last one
...
}
postBundle = new PostBundle("200","SUCCESS!",posts); // posts only contains from
//second to last result. In case
//you only have one result,
//posts is an empty ArrayList
return postBundle;
}
&#34; xyz.123@test.in"电子邮件有?如果它只有一个,那就是问题。
其次,preparedStatement.executeQuery()
永远不会返回null
因此,您无需检查它是否为null
。
第三,如果电子邮件没有任何帖子应该永远不会返回404,而是200而不是空的json。
200 OK - 请求已成功。与...一起返回的信息 响应取决于请求中使用的方法。
404 Not Found - 服务器找不到与之匹配的内容 Request-URI中。
404错误保留用于请求URI匹配。
最后,您应该相应地修改您的代码:
您应修改以下代码:
...
try {
Connection connection = DBConnectionManager.getConnection();
final String query = "SELECT user_post, post_time FROM wall_post WHERE user_id = " +
"(SELECT user_id FROM user_info WHERE user_email = ?);";
PreparedStatement preparedStatement = connection.prepareStatement(query);
preparedStatement.setString(1, email);
ResultSet resultSet = preparedStatement.executeQuery();
while (resultSet.next()) {
posts.add(new Post(resultSet.getString("user_post"),resultSet.getString("post_time")));
}
postBundle = new PostBundle("200","SUCCESS!",posts);
return postBundle;
}
...