spring-cloud

Installation
SKILL.md

Spring Cloud 微服务开发指南

概述

Spring Cloud 是一套完整的微服务解决方案,提供了服务注册与发现、配置管理、网关、负载均衡、熔断器等组件。

核心组件

1. 服务注册与发现(Eureka)

Eureka Server

@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {
    public static void main(String[] args) {
        SpringApplication.run(EurekaServerApplication.class, args);
    }
Related skills

More from teachingai/agent-skills

Installs
4
GitHub Stars
313
First Seen
Jan 26, 2026