//分页查询 public Page<Book> getBookByPage(Pageable pageable){ return bookDao.findAll(pageable); } public List<Book> getBooksByAuthorStartingWith(String author){ return bookDao.getBooksByAuthorStartingWith