Refer to the exhibit.
Which two methods will be implemented at runtime if declared in a Spring Data JPA Repository? (Choose two.)
public Customer getsingle(Long id);
public Customer findFirstOrderDateMax();
public Customer findByEmail(String email);
public Customer findFirstByOrderDateBetween(Date d1, Date d2);
public Customer findCustomerByName(String name);
Submit