package com.plannaplan; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class BookService { @Autowired private BookRepository bookRepository; public List list() { return bookRepository.findAll(); } }