mercyblitz / java-training-camp

Java Training Camp
Apache License 2.0
169 stars 116 forks source link

[云原生 - 3. 分布式配置云原生架构] 作业一:为 microsphere-configuration 新增 Nacos Spring 实现 #44

Open mercyblitz opened 2 weeks ago

mercyblitz commented 2 weeks ago

要求:

snapshot true false https://s01.oss.sonatype.org/content/repositories/snapshots

- 基于 [Microsphere Nacos Open API](https://github.com/microsphere-projects/microsphere-nacos)
  - Maven 依赖
  ```xml
    <dependencies>
      <dependency>
      <groupId>io.github.microsphere-projects</groupId>
      <artifactId>microsphere-nacos-openapi</artifactId>
      <version>1.0.0-SNAPSHOT</version>
      </dependency>
    </dependencies>

    <repositories>
        <repository>
            <id>snapshot</id>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
            <releases>
                <enabled>false</enabled>
            </releases>
            <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
        </repository>
    </repositories>

推荐 PR 到 https://github.com/microsphere-projects/microsphere-configuration

Kurok1 commented 1 week ago

https://github.com/Kurok1/microsphere-configuration/commit/35b9ee47dcd014819fc90b3839824e885b485371