This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Getting Problem in Delete operation in Struts application
Jay Shukla
Ranch Hand
Joined: Jun 08, 2008
Posts: 214
posted
0
Hi All,
I am creating a CRUD struts application. In this application in delete application.
When you delete a record, it should immediately removed from the database and remaining records should be displayed on the jsp.
But in this application when deletion happens for any record, that deletion does not taken into effect untill and unless you restart the application.
Below are the code for jsp where the records are being displayed and LogonData class with getUsers() and removeUser() frunctions.
userlist.jsp
=======
LogonData.java
==========
What is going wrong ? What changes needs to be done so when delete a record, it immediately taken into effect. (All records should be immediately displayed without the one deleted).