Tepkisel Controller'lar
WebFlux ile engellemesiz uç noktalar geliştirin.
Tepkisel Controller'lar, CoddyKit'te ücretsiz bir Spring Boot 4 Microservices & REST APIs dersidir. Bu, 4 dersinin 2. dersidir. Aşağıdan dersin tamamını ücretsiz okuyabilir, sonra tarayıcıda yerleşik kod editörü ve 7/24 yapay zeka koçu ile uygulamalı olarak pratik yapabilirsin. Bu, Spring Boot 4 Microservices & REST APIs öğrenme yolunun bir parçasıdır ve ilerlemeniz web ve CoddyKit uygulaması arasında senkronize olur. Spring Boot 4 Microservices & REST APIs kursu toplamda 4 dersten oluşur.
Bu dersin bazı bölümleri henüz çevrilmemiş olup İngilizce olarak gösterilmektedir.
Reactive Web Endpoints
With WebFlux you write @RestController classes just like in Spring MVC, but methods return reactive types instead of plain objects.
- Return
Mono<T>for a single resource - Return
Flux<T>for a collection or stream
Returning a Mono
A handler returning Mono resolves to a single JSON object. The framework subscribes for you.
@RestController
@RequestMapping("/users")
public class UserController {
@GetMapping("/{id}")
public Mono<User> getUser(@PathVariable String id) {
return userService.findById(id);
}
}Returning a Flux
A handler returning Flux serializes to a JSON array by default.
@GetMapping
public Flux<User> getAllUsers() {
return userService.findAll();
}No Blocking Allowed
Inside reactive handlers you must not call blocking code. Return the publisher and let the chain stay reactive.
// BAD: blocks the event loop
@GetMapping("/bad")
public User bad() {
return userService.findById("1").block();
}
// GOOD: stays reactive
@GetMapping("/good")
public Mono<User> good() {
return userService.findById("1");
}Path and Query Params
Binding annotations work the same as in MVC: @PathVariable, @RequestParam, and @RequestBody.
@GetMapping("/search")
public Flux<User> search(@RequestParam String name) {
return userService.findByName(name);
}Accepting a Reactive Body
A POST handler can accept a Mono request body, keeping the whole flow non-blocking.
@PostMapping
public Mono<User> create(@RequestBody Mono<User> body) {
return body.flatMap(userService::save);
}Setting Status Codes
Use @ResponseStatus or wrap results in ResponseEntity within a Mono.
@PostMapping
@ResponseStatus(HttpStatus.CREATED)
public Mono<User> create(@RequestBody Mono<User> body) {
return body.flatMap(userService::save);
}ResponseEntity in a Mono
To control headers and status dynamically, return Mono<ResponseEntity<T>>.
@GetMapping("/{id}")
public Mono<ResponseEntity<User>> getUser(@PathVariable String id) {
return userService.findById(id)
.map(ResponseEntity::ok)
.defaultIfEmpty(ResponseEntity.notFound().build());
}Streaming with Server-Sent Events
Set the content type to text/event-stream to stream a Flux to the client over time.
@GetMapping(value = "/stream",
produces = MediaType.TEXT_EVENT_STREAM_VALUE)
public Flux<Long> stream() {
return Flux.interval(Duration.ofSeconds(1));
}Error Handling
Use onErrorResume to map errors to a fallback publisher, or a @ControllerAdvice for global handling.
@GetMapping("/{id}")
public Mono<User> getUser(@PathVariable String id) {
return userService.findById(id)
.onErrorResume(e -> Mono.error(
new ResponseStatusException(HttpStatus.NOT_FOUND)));
}The Netty Server
WebFlux runs on Netty by default — an event-loop server with a small fixed thread pool. This is why blocking calls are so harmful: blocking one thread stalls many requests.
Quick Check
Test your understanding of reactive controllers.
Recap
You learned how to build reactive endpoints:
@RestControllermethods returnMonoorFlux- Never call
block()inside a handler - Use
ResponseEntityin a Mono for dynamic status - Stream with
text/event-stream
Sıkça Sorulan Sorular
“Tepkisel Controller'lar” dersi ücretsiz mi?
Evet — “Tepkisel Controller'lar” dersin tüm metni burada web'de ücretsiz olarak okunabilir. Etkileşimli olarak pratik yapmak (yerleşik kod editörü ve 7/24 yapay zeka koçu) ve Spring Boot 4 Microservices & REST APIs kursunun geri kalanını açmak için CoddyKit PRO'ya yükselt. Spring Boot 4 Microservices & REST APIs kursu toplamda 4 dersten oluşur.
“Tepkisel Controller'lar” dersinde ne öğreneceğim?
WebFlux ile engellemesiz uç noktalar geliştirin. Spring Boot 4 Microservices & REST APIs ile uygulamalı kodu tarayıcıda doğrudan çalıştırarak pratik yaparsın ve 7/24 yapay zeka koçu dersi çalışırken sorularını yanıtlar.
Spring Boot 4 Microservices & REST APIs öğrenmeye başlamak için deneyim gerekli mi?
Önceden deneyim gerekmez. CoddyKit'te Spring Boot 4 Microservices & REST APIs, başlangıçtan ileri seviyeye kadar yapılandırıldığı için buradan başlayabilir veya başından başlayıp kendi hızında ilerleme yapabilirsin. Bu, 4 dersinin 2. dersidir.
“Tepkisel Controller'lar” dersi ne kadar sürer?
Çoğu CoddyKit dersi yaklaşık 5–10 dakika sürer. Her biri kısa ve etkileşimli olduğu için sabit ilerleme yaparsın ve web ile uygulama arasında tam olarak bıraktığın yerden devam edebilirsin.
Bu Spring Boot 4 Microservices & REST APIs dersinde kod yazıp çalıştırabilir miyim?
Evet. Her Spring Boot 4 Microservices & REST APIs dersi yerleşik bir kod editörü içerir, bu sayede tarayıcıda gerçek kod yazıp çalıştırabilir ve anlık yapay zeka geri bildirimi alırsın — yerel kurulum gerekli değildir.
Bu kursun tüm dersleri
- Mono ve Flux Temelleri
- Tepkisel Controller'lar
- Tepkisel Çağrılar için WebClient
- Geri Basınç ve Operatörler