微服务SpringCloud(一)
Spring Cloud微服务(一)
什么是Spring Cloud
简单来说,Spring Cloud是一个微服务框架的规范,注意,只是规范,他不是任何具体的框架。Spring Cloud 为最常见的分布式系统模式提供了一种简单且易于接受的编程模型,帮助开发人员构建有弹性的、可靠的、协调的应用程序。Spring Cloud 构建于 Spring Boot 之上,使得开发者很容易入手并快速应用于生产中。
新建Spring Cloud项目
选择Eureka server就可以新建eureka注册中心了。
pom.xml
|
使用 @EnableEurekaServer 来说明项目是一个 Eureka
|
修改配置文件
server: port: 8761 eureka: instance: hostname: localhost client: registerWithEureka: false fetchRegistry: false serviceUrl: defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ |
运行 EurekaServerApplication 类,启动项目,访问项目 http://localhost:8761/