Ja, es ist möglich, mehrere `@Autowired`-Annotationen einem Spring Boot Controller zu verwenden. Die `@Autowired`-Annotation wird verwendet, um Abhängigkeiten automatisch durch Spring's Dependency Injection zu injizieren. Hier ist ein Beispiel, wie das aussehen könnte: ```java import org.springframework.beans.factory.annotation.Autowired; import.springframework.web.bind.annotationMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/api") public class MyController { private final MyService myService; private final AnotherService anotherService; @Autowired public MyController(MyService myService, AnotherService anotherService) { this.myService = myService; this.anotherService = anotherService; } @GetMapping("/example") public String exampleEndpoint() { // Verwende myService und anotherService hier return "Hello, World!"; } } ``` In diesem Beispiel werden zwei Services (`MyService` und `AnotherService`) in den Controller injiziert. Der Konstruktor des Controllers ist mit `@Autowired` annotiert, was bedeutet, dass Spring die Abhängigkeiten automatisch injiziert, wenn der Controller instanziiert wird. Weitere Informationen zur Verwendung von `@Autowired` in Spring Boot findest du in der offiziellen Dokumentation: [Spring Framework Documentation](https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-autowired-annotation).