Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a page that shows student detail and upon deleting a record by a servlet i have redirected it back to the same page.My problem is that even after redirecting to the page,the page still shows same detail although the detail has been removed from the database.

<%-- 
    Document   : searchbystudent
    Created on : Nov 23, 2012, 10:57:01 AM
    Author     : Computer
--%>

<%@page import="com.bit.student.DAO.SearchStudent"%>
<%@page import="com.bits.student.model.Section"%>
<%@page import="com.bits.student.model.Student"%>
<%@page import="java.util.List"%>
<%@page import="com.bit.student.DAO.SearchByStudent"%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Student Management System</title>
        <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen" />
    </head>
    <body>
        <div id="header">
             Student Management System
        </div>

        <div id="menu">
        <table id="menu">

        <tr>
        <td>
       <a href="http://localhost:8080/StudentManagement/Class/classoption.jsp"> Class</a>
        </td>

        <td>
       <a href="http://localhost:8080/StudentManagement/Section/sectionoption.jsp"> Section</a>
        </td>

        <td>
       <a href="http://localhost:8080/StudentManagement/Student/studentoption.jsp"> Student</a>
        </td>
        </tr>


        </table >
         <form action="http://localhost:8080/StudentManagement/Student/searchbystudent.jsp" method="post">

<input type="text" value="search student" name="student_name" style="width:150px;margin-left:590px;margin-top:20px;" onBlur="if (this.value == '') {this.value = 'search student';}"  onfocus="if (this.value == 'search student') {this.value = '';}" />
<input type="hidden" name="define" value="1">
<input type="submit" value="submit">

</form>
    </div>
        <%if(session.getAttribute("message")!=null)
                       {%>

                       <div id="messagebox">
        <div class="message">

            <%out.print(session.getAttribute("message"));

            session.removeAttribute("message");
            %>

        </div>
                       </div>
        <%}%>

        <%



        String student_name=request.getParameter("student_name");

        SearchByStudent searchStudent = new SearchByStudent();

        System.out.println("Name is "+student_name);
        boolean status = searchStudent.getStudentList(student_name);

        if(status)
                       {


            List<Student> list = searchStudent.getStudentNameList();

            List<Section>listSection = searchStudent.getSectionList();



            %>
            <div id="loginBox" style="height:auto;">

                <table id="hometable">

                    <th>Name</th>
                    <th>Class</th>
                    <th>Section</th>

                    <%
                    for(int i=0;i<list.size();i++)
                               {

                Student student=list.get(i);
                Section section = listSection.get(i);



                    %>
                    <tr>
                        <td>
                            <%out.print(student.getStudent_name());%>

                        </td>
                        <td>
                            <%out.print(section.getClass_id());%>
                        </td>
                        <td>
                            <%out.print(section.getSection_name());%>
                        </td>
                        <td>
                            <a href="http://localhost:8080/StudentManagement/Student/studentdetail.jsp?student_id=<%=student.getStudent_id()%>">update/view</a>
                        </td>
                        <td>
                            <a href="http://localhost:8080/StudentManagement/DeleteByStudentServlet?student_id=<%=student.getStudent_id()%>&student_name=<%=student_name%>">delete</a>
                        </td>
                    </tr>

                    <%  }%>

                </table>


            </div>

            <%
                  list.clear();
                  listSection.clear();                      
            }
        else
                       {
        %>
        <div id="messagebox">

             <div class="message">

            <%out.print("No result found");


            %>

        </div>

        </div>
        <%}//end of else

          %>     



    </body>
</html>

My DeleteByStudent servlet

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bits.student.controller;

import com.bit.student.DAO.DeleteStudent;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

/**
 *
 * @author Computer
 */
public class DeleteByStudentServlet extends HttpServlet {


    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.setContentType("text/html;charset=UTF-8");
        PrintWriter out = response.getWriter();
        try {
            HttpSession session = request.getSession();
            int student_id = Integer.parseInt(request.getParameter("student_id"));
            DeleteStudent deleteStudent = new DeleteStudent();
            boolean status = deleteStudent.deleteStudent(student_id);

            if(status)
            {
                response.sendRedirect("http://localhost:8080/StudentManagement/Student/searchbystudent.jsp?student_name="+request.getParameter("student_name"));
            }
            else
            {
                session.setAttribute("message","Couldnot delete data");
                response.sendRedirect("http://localhost:8080/StudentManagement/Student/searchbystudent.jsp?student_name="+request.getParameter("student_name"));
            }
        } finally {            
            out.close();
        }
    }

    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /** 
     * Handles the HTTP <code>GET</code> method.
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        processRequest(request, response);
    }

    /** 
     * Handles the HTTP <code>POST</code> method.
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        processRequest(request, response);
    }

    /** 
     * Returns a short description of the servlet.
     * @return a String containing servlet description
     */
    @Override
    public String getServletInfo() {
        return "Short description";
    }// </editor-fold>
}

My DeleteStudent class

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bit.student.DAO;
import java.sql.*;

/**
 *
 * @author Computer
 */
public class DeleteStudent {

    Connection con;
    PreparedStatement pstmt;
    ResultSet rs;

    public DeleteStudent()
    {

    }
    public boolean deleteStudent(int student_id)
    {
        try {
            ConnectionFile connection = new ConnectionFile();

            System.out.println("student id in delete "+student_id);
            con = connection.connectionfile();
            pstmt = con.prepareStatement("Delete from Student where student_id=?");
            pstmt.setInt(1, student_id);

            if(!pstmt.execute())
            {
                return true;
            }
            else
            {
                return false;
            }

        } 
         catch(Exception ex)
            {
                    ex.printStackTrace();
                    return false;
            }

    }
}

Student Bean

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bits.student.model;

/**
 *
 * @author Computer
 */
public class Student {

    int student_id;
    String student_name;
    int section_id;
    String contact;
    String parent_name;

    public Student()
    {


    }

    public String getContact() {
        return contact;
    }

    public void setContact(String contact) {
        this.contact = contact;
    }

    public String getParent_name() {
        return parent_name;
    }

    public void setParent_name(String parent_name) {
        this.parent_name = parent_name;
    }

    public int getSection_id() {
        return section_id;
    }

    public void setSection_id(int section_id) {
        this.section_id = section_id;
    }

    public int getStudent_id() {
        return student_id;
    }

    public void setStudent_id(int student_id) {
        this.student_id = student_id;
    }

    public String getStudent_name() {


        return student_name;
    }

    public void setStudent_name(String student_name) {

        final StringBuilder result = new StringBuilder(student_name.length());
        String[] words = student_name.split("\\s");
        for(int i=0,l=words.length;i<l;++i) {
        if(i>0) result.append(" ");      
         result.append(Character.toUpperCase(words[i].charAt(0)))
        .append(words[i].substring(1));

}
        this.student_name = result.toString();
    }



}

Section bean

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bits.student.model;

/**
 *
 * @author Computer
 */
public class Section {

    String section_name;
    int section_id;
    int class_id;
    int student_count;

    public Section()
    {
        this.section_id=0;
        this.section_name=null;
        this.class_id=0;
        this.student_count=0;
    }

    public int getClass_id() {
        return class_id;
    }

    public void setClass_id(int class_id) {
        this.class_id = class_id;
    }

    public int getSection_id() {
        return section_id;
    }

    public void setSection_id(int section_id) {
        this.section_id = section_id;
    }

    public String getSection_name() {
        return section_name;
    }

    public void setSection_name(String section_name) {
        this.section_name = section_name;
    }

    public int getStudent_count() {
        return student_count;
    }

    public void setStudent_count(int student_count) {
        this.student_count = student_count;
    }



}

SearchByStudent class

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bit.student.DAO;
import com.bits.student.model.Section;
import com.bits.student.model.Student;
import java.sql.*;
import java.util.ArrayList;
import java.util.List;

/**
 *
 * @author Computer
 */
public class SearchByStudent {
    Connection con;
    Statement stmt;
    PreparedStatement pstmt;
    ResultSet rs;
    List<Student>list = new ArrayList<Student>();
    List<Section>listSection = new ArrayList<Section>();

    public SearchByStudent()
    {
        list.clear();
        listSection.clear();
    }

    public boolean getStudentList(String student_name)
    {

        try
        {

            ConnectionFile connection = new ConnectionFile();
            con=connection.connectionfile();

            pstmt = con.prepareStatement("select Student.*,Section.section_name,Section.class_name from Section inner join Student on Section.section_id=Student.section_id where student_name=?");
            pstmt.setString(1, student_name);

            rs = pstmt.executeQuery();

            if(rs.next())
            {
                do
                {

                    Student student = new Student();
                    Section section = new Section();
                    student.setStudent_name(rs.getString("student_name"));
                    student.setStudent_id(rs.getInt("student_id"));
                    section.setSection_name(rs.getString("section_name"));
                    section.setClass_id(rs.getInt("class_name"));

                    list.add(student);
                    listSection.add(section);


                }while(rs.next());

                return true;
            }
            else
            {
                int count=0;
                String[] name = student_name.split("\\s");
                System.out.println("Firstname is "+name[0]);
                System.out.println("Last name is "+name[1]);
                String query="select Student.*,Section.section_name,Section.class_name from Section inner join" 
                               +" Student on Section.section_id=Student.section_id where" 
                                +" Student.student_name like \'"+name[0]+"%\' or Student.student_name like \'%"+name[1]+"\'";
                pstmt = con.prepareStatement(query);


                rs=pstmt.executeQuery();

                while(rs.next())
                {
                    System.out.println("check 123");
                    Student student = new Student();
                    Section section = new Section();
                    student.setStudent_name(rs.getString("student_name"));

                    student.setStudent_id(rs.getInt("student_id"));
                    section.setSection_name(rs.getString("section_name"));
                    section.setClass_id(rs.getInt("class_name"));

                    list.add(student);
                    listSection.add(section);
                    count++;

                }

                if(count!=0)
                {

                return true;
                }
                else
                {
                    return false;
                }
            }

        }
        catch(Exception ex)
        {
            ex.printStackTrace();
            return false;
        }
        finally
        {
            try{

                con.close();
            }
            catch(Exception ex)
            {
                ex.printStackTrace();
            }
        }





    }
public List getStudentNameList()
        {
            return list;
        }

public List getSectionList()
{
    return listSection;
}
}
share|improve this question

closed as too localized by tereško, George Stocker Nov 27 '12 at 21:00

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

You may have caching problem. Try to add following in your jsp and see

 <% response.setHeader("Cache-Control","no-cache"); //HTTP 1.1 
   response.setHeader("Pragma","no-cache"); //HTTP 1.0 
   response.setDateHeader ("Expires", 0); //prevents caching at the proxy server  
 %>

You could find more information from here

share|improve this answer
nope this is also not helping. – ntstha Nov 27 '12 at 15:57
Can you clear browser cache manually and do refresh on page and see to identify whether this is a caching issue. – KingJava Nov 27 '12 at 15:59
If it is a caching issue and you still get this you may try to add a filter and do the cache clear their. Refer this for more info. stackoverflow.com/questions/4194207/… – KingJava Nov 27 '12 at 16:04
okay i will try that but i dont think its caching issue as i am redirecting to the jsp and all details should again be retrieved from database and displayed. – ntstha Nov 27 '12 at 16:35

You're not explicitly committing nor closing the JDBC connection and hence there's risk that the database transaction still "hangs" in the DB, waiting for the command that the caller is finished with the transaction.

Not closing the JDBC connection (and statement and resultset) has also the consequence that you're effectively leaking DB resources away (i.e. you're never returning them to the DB for reuse and thus the DB is forced to keep opening new resources), which would only cause major trouble when the DB runs out of them sooner or later.

You should always close the connection, statement and resultset in the reversed order in the finally block of the very same try block as where they are been acquired/created.

Further, there's a second potential problem which may lead to misinterpretation of the problem: you're using PreparedStatement#execute() to issue a DELETE statement and relying on its return value. However, if you've properly read the javadoc, you should have learnt that this method returns true only when a ResultSet is returned as first result (i.e. when a SELECT statement is executed), otherwise false (i.e. when an INSERT, UPDATE or DELETE statement is exeucted). You should be using PreparedStatement#executeUpdate() method instead.

Here's a rewrite of your bad deleteStudent() method showing the proper approcah.

public void deleteStudent(int id) throws SQLException {
    Connection connection = null;
    PreparedStatement statement = null;

    try {
        connection = new ConnectionFile().connectionfile();
        statement = connection.prepareStatement("Delete from Student where student_id=?");
        statement.setInt(1, id);
        statement.executeUpdate();
    } finally {
        if (statement != null) try { statement.close(); } catch (SQLException ignore) {}
        if (connection != null) try { connection.close(); } catch (SQLException ignore) {}
    }
}

And use it as follows:

try {
    deleteStudent.deleteStudent(student_id);
} catch (SQLException e) {
    e.printStackTrace();
    session.setAttribute("message","Couldnot delete data");
}
response.sendRedirect("http://localhost:8080/StudentManagement/Student/searchbystudent.jsp?student_name=" + request.getParameter("student_name"));

Further there could possibly be another cause in the ConnectionFile class. At least the class design and the class name gives me the impression that this is also not doing its job the right way. At least, you should guarantee that it returns a new connection everytime.

See also:

share|improve this answer
yes thnks for pointing out about closing connection.But even after i had closed all jdbc resource its still giving the same problem.I hope you could look further into the code.I am not able to determine whats wrong. – ntstha Nov 27 '12 at 15:58

Not the answer you're looking for? Browse other questions tagged or ask your own question.