package com.roncoo.education.gateway; 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() { String html = "
Gateway Run Success

"; html = html + "
网关地址:http://localhost:7700
"; return Mono.just(html); } }