第二次访问的空数据

时间:2014-08-06 03:18:43

标签: java postgresql jsp

嗯,遗憾的是我甚至不知道如何描述这个错误lol :(

我想显示一张我在数据库中存储它的路径的图像。而且我的代码第一次访问数据库时效果很好。但是,我的代码在第二次进入数据库时​​检索null,依此类推。我盯着我的代码几个小时,但无法找到错误lol :(

getimage.jsp

<form action="getimage" method="get">
    <input type="text">
    <input type="submit" name="getimage">
</form>

<c:forEach var="image" items="${image_path}">
    <img src="${image}"/>
</c:forEach>

的servlet:

    HttpSession session = request.getSession();
    session.removeAttribute("image_path");
    List<String> list_image_path = new ArrayList<String>();

    ImagePath img = ImageDao.getInstance().getPath(8);
    list_image_path.add(img.getImagePath());

    session.setAttribute("image_path", list_image_path);

    System.out.println(img);

    request.getRequestDispatcher("getimage.jsp").forward(request, response);

ImageDao.java

private ImageDao() {
    try {
        conn = MyDatabase.getConnection();
    } catch (SQLException e) {
        System.out.println( e.getClass() + " - Can not connect to the databse");
        e.printStackTrace();
    }
}

public static ImageDao getInstance() {
    if(instance == null) {
        synchronized( UsersDao.class) {
            if( instance == null ){
                instance = new ImageDao();
            }
        }
    }
    return instance;
}
public static ImagePath getPath( long id) {
    ImagePath path = new ImagePath();
    String sql = "SELECT * FROM item_image WHERE id=?";

    try {
        System.out.println(id + ": " + conn);
        PreparedStatement pstmt = conn.prepareStatement( sql );

        pstmt.setLong(1, id);
        ResultSet rs = pstmt.executeQuery();             // Fail right here

        if( rs.next() ) {
            System.out.println( rs.getLong("id") + ": " + rs.getString("path") + " " + id);
            path.setId( rs.getLong( "id" ));
            path.setImagePath( rs.getString("path"));
        }

        pstmt.close();
        rs.close();
        conn.close();
        return path;
    } catch( SQLException e ) {
        System.out.println("Cant get it");
    } finally {
        if( conn != null ) { try { conn.close(); } catch( SQLException e) {}};
    }
    return path;
}

所以这是我在ImageDao.java中嵌入的控制台上的消息显示: 第一次访问:

8: org.postgresql.jdbc4.Jdbc4Connection@3d3cdc3b
8: upload/download.jpg 8
Id: 8 path: upload/download.jpg

第二次访问:

8: org.postgresql.jdbc4.Jdbc4Connection@3d3cdc3b
Cant get it
Id: 0 path: null

1 个答案:

答案 0 :(得分:1)

您只在单例构造函数中创建一次连接,并在第一个查询的末尾关闭它。

然后,在第二个查询中,连接已关闭,您无法执行查询。

在查询之前创建连接。