在春季云项目的前端显示404

时间:2019-04-07 12:09:49

标签: spring-boot spring-cloud

在进行毕业设计时,我尝试使用Spring Cloud构建框架。在建设过程中,由于自学的局限性,我没有完全理解一些知识要点,因此遇到很多问题。这些问题中的大多数已通过在Internet上共享前辈而得以解决,但是现在当我遇到此问题时,我在Internet上搜索了许多相关资料,但找不到解决方案。所以我正在寻求帮助。

项目启动后,当单击运行仪表板中的端口号40999和40888时,Google浏览器将显示404,如下所示: enter image description here 但是当我从Eureka页面访问它时,它可以工作 而且当我使用Google或邮递员时,页面仍显示404和上面的错误消息。

在Internet上发现了许多相关问题,包括应用程序。属性配置和启动类位置。 仍然希望有人能帮助我。谢谢。 这是我的测试控制器。

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

@RequestMapping("/test")
@RestController
public class TestController {

    @RequestMapping("/hello")
    @ResponseBody
    public String test(){
        return "hello";
    }
}

这是application.properties:

spring.application.name=client
server.port=40999
eureka.client.serviceUrl.defaultZone=http://localhost:20000/eureka/

This is the picture of console log.

0 个答案:

没有答案