我有這本書的列表,我想知道如何使用servlet打印出所有列表元素。我確信有一些相當簡單的方法來做到這一點,但我不知道如何。使用servlet打印列表元素
public List<BookInfo> listBooks() {
EntityManager em = EMFService.get().createEntityManager();
// read the existing entries
Query q = em.createQuery("select m from BookInfo m");
List<BookInfo> books = q.getResultList();
return books;
}
你的意思是打印頁面或登錄控制檯的領域? – mehdinf 2015-01-04 10:57:56
在頁面上。但我想我可以使用一個簡單的response.setContentType(「text/html」);就足以擁有一個頁面。 – user4274735 2015-01-04 11:02:38