<%
// 假设从数据库获取书籍信息
List books = getBooksFromDatabase();
for (Book book : books) {
%>
<%= book.getAuthor() %>
<%= book.getPrice() %>
}