diff --git a/roncoo-education-app-gateway/src/main/java/com/roncoo/education/app/gateway/IndexController.java b/roncoo-education-app-gateway/src/main/java/com/roncoo/education/app/gateway/IndexController.java index 57dc95b25dfd0f2a6265eafa4a2e555f44046ba9..1bd9a903cc4d76e045e68c1de9dad2775fb3d724 100644 --- a/roncoo-education-app-gateway/src/main/java/com/roncoo/education/app/gateway/IndexController.java +++ b/roncoo-education-app-gateway/src/main/java/com/roncoo/education/app/gateway/IndexController.java @@ -4,11 +4,15 @@ import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import reactor.core.publisher.Mono; +/** + * @author fengyw + */ @RestController public class IndexController { @GetMapping("/") public Mono index() { - return Mono.just("SUCCESS"); + String html = "
Gateway Run Success
"; + return Mono.just(html); } }