Spring Boot - Spring Annotations
Examine the following Spring Boot repository class:
@Repository
public interface ProductRepository {
void addProduct(Product product);
}
What is the issue with this code?