Spring Boot - Spring Annotations
Consider the following Spring Boot class:
@Service
public class UserService {
public String getUser() {
return "Alice";
}
}
What is the role of this class in the application?