Untitled

 avatar
unknown
plain_text
2 years ago
177 B
2
Indexable
@Service
public class BookService {

    @Autowired
    private BookRepository bookRepository;

    public List<Book> getAll() {
        return bookRepository.findAll();
    }
}
Editor is loading...