Merge pull request #92 from fangjian0423/master
Add reference doc module for master branchpull/96/head
commit
110683528a
@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-alibaba</artifactId>
|
||||||
|
<version>0.2.1.BUILD-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-alibaba-docs</artifactId>
|
||||||
|
<name>Spring Cloud Alibaba Documentation</name>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<docs.main>spring-cloud-alibaba</docs.main>
|
||||||
|
<main.basedir>${basedir}/..</main.basedir>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>docs</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.asciidoctor</groupId>
|
||||||
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
||||||
|
<inherited>false</inherited>
|
||||||
|
<configuration>
|
||||||
|
<sourceDirectory>${basedir}/src/main/asciidoc-zh</sourceDirectory>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>com.agilejava.docbkx</groupId>
|
||||||
|
<artifactId>docbkx-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
|
<inherited>false</inherited>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
|
||||||
|
</project>
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud AliCloud ACM
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud AliCloud ANS
|
@ -0,0 +1,4 @@
|
|||||||
|
== 依赖管理
|
||||||
|
|
||||||
|
Spring Cloud Alibaba BOM 包含了它所使用的所有依赖的版本。
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud Alibaba Nacos Config
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud Alibaba Nacos Discovery
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud AliCloud OSS
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud Alibaba Rocket Binder
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud Alibaba Sentinel
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud AliCloud ACM
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud AliCloud ANS
|
@ -0,0 +1,4 @@
|
|||||||
|
== Dependency Management
|
||||||
|
|
||||||
|
The Spring Cloud Alibaba Bill of Materials (BOM) contains the versions of all the dependencies it uses.
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud Alibaba Nacos Config
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud Alibaba Nacos Discovery
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud AliCloud OSS
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud Alibaba Rocket Binder
|
@ -0,0 +1 @@
|
|||||||
|
== Spring Cloud Alibaba Sentinel
|
@ -0,0 +1,31 @@
|
|||||||
|
[[spring-cloud-alibaba-reference]]
|
||||||
|
= Spring Cloud Alibaba Reference Documentation
|
||||||
|
xiaojing; xiaolongzuo; jim fang; bingting peng
|
||||||
|
:doctype: book
|
||||||
|
:toc:
|
||||||
|
:toclevels: 4
|
||||||
|
:source-highlighter: prettify
|
||||||
|
:numbered:
|
||||||
|
|
||||||
|
== Introduction
|
||||||
|
|
||||||
|
Spring Cloud Alibaba provides a one-stop solution for distributed application development. It contains all the components required to develop distributed applications, making it easy for you to develop your applications using Spring Cloud.
|
||||||
|
|
||||||
|
With Spring Cloud Alibaba, you only need to add some annotations and a small amount of configurations to connect Spring Cloud applications to the distributed solutions of Alibaba, and build a distributed application system with Alibaba middleware.
|
||||||
|
|
||||||
|
include::dependency-management.adoc[]
|
||||||
|
|
||||||
|
include::nacos-discovery.adoc[]
|
||||||
|
|
||||||
|
include::nacos-config.adoc[]
|
||||||
|
|
||||||
|
include::sentinel.adoc[]
|
||||||
|
|
||||||
|
include::rocketmq.adoc[]
|
||||||
|
|
||||||
|
include::ans.adoc[]
|
||||||
|
|
||||||
|
include::acm.adoc[]
|
||||||
|
|
||||||
|
include::oss.adoc[]
|
||||||
|
|
Loading…
Reference in New Issue