#1 Home Improvement Retailer

public interface BookRepository extends JpaRepository<Book, Long> List<Book> findByAuthor(String author);

@Service @RequiredArgsConstructor public class BookService private final BookRepository bookRepo; public Book saveBook(Book book) return bookRepo.save(book);

management.endpoints.web.exposure.include=health,info,metrics Build a fat JAR: