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;
}
}