Untitled
unknown
plain_text
3 years ago
177 B
3
Indexable
@Service
public class BookService {
@Autowired
private BookRepository bookRepository;
public List<Book> getAll() {
return bookRepository.findAll();
}
}Editor is loading...