hi, I have simple spring mvc web application which can handle simple book store. I have a problem when the existing book is updating.
I want to up date title of a book. My updateBook.jsp is somethig like this.
<form method="post" action="">
Previous book title : <input type="text" name="previousTitle" /> <br>
New book title :<input type="text" name="newTitle"/><br>
<input type="submit" name="update" value="update"/>
</form>
Problem: I have java class,"UpdateBookController" for handle the update of book. How can I handle the previous and new book titles in "UpdateBookController" class.
any idea..?
Thank in advance!