Changes between Version 2 and Version 3 of S2S_WEB_BOOK_MANAGEMENT_R0


Ignore:
Timestamp:
12/18/08 15:49:50 (16 years ago)
Author:
kyli
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S2S_WEB_BOOK_MANAGEMENT_R0

    v2 v3  
    3535= Design = 
    3636Create a "books.jsp" file, which lists all the persisted books on the server: 
    37  * Use the BookService class to retrieve a list with the books, and the Book class to iterate through the list, displaying each book in appropriate format. These two require importing the classes in the jsp (use <%@page import=".."%>). 
     37 * Use the !BookService class to retrieve a list with the books, and the Book class to iterate through the list, displaying each book in appropriate format. These two require importing the classes in the jsp (use <%@page import=".."%>). 
    3838 * Keep in mind that the list can be very long. This means we have to display a certain number of books per page (for example 10), a link to the previous/next page. It will be best to be done using the GET method (this way copying/saving the URL will be easy). 
    3939 * Access for non-logged users must be denied ( using response.sendRedirect(..); return;). 
    4040Create "search_books.jsp" file: 
    41  * Make a simple search form (like [http://sophiebooks.org/s4bookstorage.html?view=search], for example), which posts the entered data to a servlet. The servlet outputs the result, using the BookManager class. 
     41 * Make a simple search form (like [http://sophiebooks.org/s4bookstorage.html?view=search], for example), which posts the entered data to a servlet. The servlet outputs the result, using the !BookService class. 
     42 * !SearchServlet.java must process the GET and POST data from search_books.jsp and display the results. Since the results may be too many, 10 results must be displayed on a page, as well as links to previous/next 10 results. 
     43Rename the uploaded_books.jsp to my_books.jsp, display there a list of the books, uploaded by the current user (using the idea of the search), and link to a new page: upload_book.jsp.  
    4244  
    4345