Spring Boot - Spring Annotations
What is wrong with this Spring Boot repository class?
@Repository
public class UserRepository {
public void saveUser(String user) {
// save logic
}
}
Options:
A) Class should be an interface extending JpaRepository
B) Missing @Service annotation
C) @Repository cannot be used on classes
D) Method saveUser must return a value