diff --git a/spring-reactor/pom.xml b/spring-reactor/pom.xml
index 9ab512cddb..c6ad99aea7 100644
--- a/spring-reactor/pom.xml
+++ b/spring-reactor/pom.xml
@@ -27,7 +27,12 @@
io.projectreactor
reactor-bus
+ 2.0.8.RELEASE
+
+
+ io.projectreactor
+ reactor-core
+ 2.0.8.RELEASE
-
diff --git a/spring-reactor/src/main/java/com/baeldung/controller/NotificationController.java b/spring-reactor/src/main/java/com/baeldung/controller/NotificationController.java
index b17691498e..8665f247b0 100644
--- a/spring-reactor/src/main/java/com/baeldung/controller/NotificationController.java
+++ b/spring-reactor/src/main/java/com/baeldung/controller/NotificationController.java
@@ -1,14 +1,16 @@
package com.baeldung.controller;
-import com.baeldung.doman.NotificationData;
import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.baeldung.doman.NotificationData;
+
import reactor.bus.Event;
import reactor.bus.EventBus;
-@Controller
+@RestController
public class NotificationController {
@Autowired