book.setTitle("HTML 5 et CSS 3");
book.setCategory(category1);
book.setPrice(new java.math.BigDecimal("10.50"));
book.setDate(now);
book.addAuthor(author1);
File f = new File("WebContent/resources/images/html.jpg");
byte[] photo = new byte[(int) (f.length())];
FileInputStream fi = new FileInputStream(f);
fi.read(photo);
book.setPhoto(photo);