Advertisement
Guest User

Untitled

a guest
Aug 29th, 2018
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1.  private BookDbUtil bookDbUtil;
  2.  
  3.     @Override
  4.     public void init() throws ServletException {
  5.         super.init();
  6.  
  7.         try {
  8.             bookDbUtil = new BookDbUtil();
  9.         }
  10.         catch (Exception exc) {
  11.             throw new ServletException(exc);
  12.         }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement