SpringCloud_微服务基础day1(走进微服务,认识springcloud,微服务(图书管理)项目搭建)
微服务是一种架构风格,它提倡将单一应用程序划分成一组小的服务,这些服务都在自己的进程中运行,并且通过轻量级的通信机制进行通信。
Spring Cloud 是一个提供工具支持以微服务架构方式开发分布式系统的 Java 库。
以下是搭建微服务(图书管理)项目的基本步骤:
- 创建一个 Maven 或 Gradle 项目作为父项目。
- 在父项目中添加 Spring Cloud 的依赖管理。
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Hoxton.SR10</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
- 创建 Eureka 服务注册中心。
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
@EnableEurekaServer
@SpringBootApplication
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
application.properties:
spring.application.name=eureka-server
server.port=8761
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.serviceUrl.defaultZone=http://localhost:8761/eureka/
- 创建服务提供者(例如图书服务)并注册到 Eureka。
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
</dependencies>
application.properties:
spring.application.name=book-service
server.port=8080
eureka.client.serviceUrl.defaultZone=http://localhost:8761/eureka/
- 创建服务消费者(例如图书管理界面)并从 Eureka 发现服务。
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
</dependencies>
application.properties:
spring.application.name=book-management
server.port=8081
eureka.client.serviceUrl.defaultZone=http://localhost:8761/eureka/
- 使用 Feign 进行服务间调用。
@FeignClient("book-service"
评论已关闭