Add Doc Link
This commit is contained in:
12
README.md
12
README.md
@@ -1,2 +1,14 @@
|
|||||||
# Introduction to Spring Cloud Stream Kafka
|
# Introduction to Spring Cloud Stream Kafka
|
||||||
Introduction to Spring Cloud Stream Kafka
|
Introduction to Spring Cloud Stream Kafka
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
Please visit the following links for project documentations.
|
||||||
|
|
||||||
|
[Spring Cloud Stream Kafka (Part 1)](https://tanzu.vmware.com/developer/guides/event-streaming/spring-cloud-stream-kafka-p1/)
|
||||||
|
|
||||||
|
[Spring Cloud Stream Kafka (Part 2)](https://tanzu.vmware.com/developer/guides/event-streaming/spring-cloud-stream-kafka-p2/)
|
||||||
|
|
||||||
|
[Spring Cloud Stream Kafka (Part 3)](https://tanzu.vmware.com/developer/guides/event-streaming/spring-cloud-stream-kafka-p3/)
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,11 @@ A simple example for an Event Driven Flow by the help of **SPRING CLOUD STREAM K
|
|||||||
* spring-cloud.version: `Hoxton.SR11` (To get Advantage of Binders `@Input`,`@Output`)
|
* spring-cloud.version: `Hoxton.SR11` (To get Advantage of Binders `@Input`,`@Output`)
|
||||||
* spring-boot.version: `2.4.5`
|
* spring-boot.version: `2.4.5`
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
Please visit [Spring Cloud Stream Kafka (Part 1)](https://tanzu.vmware.com/developer/guides/event-streaming/spring-cloud-stream-kafka-p1/) for Project documentation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The Docker-compose file contains: single kafka and zookeeper. just simply run the following command
|
The Docker-compose file contains: single kafka and zookeeper. just simply run the following command
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
@@ -81,3 +86,6 @@ java -Dspring.profiles.active=test2 -Dserver.port=8082 -jar scs-099-0.0.1-SNAPSH
|
|||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
|
Please visit [Spring Cloud Stream Kafka (Part 1)](https://tanzu.vmware.com/developer/guides/event-streaming/spring-cloud-stream-kafka-p1/) for Project documentation
|
||||||
|
|||||||
@@ -10,6 +10,10 @@ A simple Example of an Event Driven Flow by the help of **SPRING CLOUD STREAM KA
|
|||||||
* spring-cloud.version: `2020.0.3`
|
* spring-cloud.version: `2020.0.3`
|
||||||
* spring-boot.version: `2.5.2`
|
* spring-boot.version: `2.5.2`
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
Please visit [Spring Cloud Stream Kafka (Part 3)](https://tanzu.vmware.com/developer/guides/event-streaming/spring-cloud-stream-kafka-p3/) for Project documentation
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
The Docker-compose file contains: single kafka and zookeeper. just simply run the following command
|
The Docker-compose file contains: single kafka and zookeeper. just simply run the following command
|
||||||
@@ -102,3 +106,4 @@ ORDER_UUID=$(curl --silent -H 'Content-Type: application/json' -d "{\"itemName\"
|
|||||||

|

|
||||||
|
|
||||||
|
|
||||||
|
Please visit [Spring Cloud Stream Kafka (Part 3)](https://tanzu.vmware.com/developer/guides/event-streaming/spring-cloud-stream-kafka-p3/) for Project documentation
|
||||||
|
|||||||
@@ -10,6 +10,10 @@ A simple Example of an Event Driven Flow by the help of **SPRING CLOUD STREAM KA
|
|||||||
* spring-cloud.version: `Hoxton.SR11` (To get Advantage of Binders `@Input`,`@Output`)
|
* spring-cloud.version: `Hoxton.SR11` (To get Advantage of Binders `@Input`,`@Output`)
|
||||||
* spring-boot.version: `2.4.5`
|
* spring-boot.version: `2.4.5`
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
Please visit [Spring Cloud Stream Kafka (Part 2)](https://tanzu.vmware.com/developer/guides/event-streaming/spring-cloud-stream-kafka-p2/) for Project documentation
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
The Docker-compose file contains: single kafka and zookeeper. just simply run the following command
|
The Docker-compose file contains: single kafka and zookeeper. just simply run the following command
|
||||||
@@ -56,3 +60,5 @@ you should now be able to place your order by calling the following `curl` comma
|
|||||||
ORDER_UUID=$(curl --silent -H 'Content-Type: application/json' -d "{\"itemName\":\"book\"}" http://localhost:8080/order | jq -r '.orderUuid') && for i in `seq 1 15`; do echo $(curl --silent "http://localhost:8080/order/status/"$ORDER_UUID); sleep 1; done;
|
ORDER_UUID=$(curl --silent -H 'Content-Type: application/json' -d "{\"itemName\":\"book\"}" http://localhost:8080/order | jq -r '.orderUuid') && for i in `seq 1 15`; do echo $(curl --silent "http://localhost:8080/order/status/"$ORDER_UUID); sleep 1; done;
|
||||||
```
|
```
|
||||||
Note: make sure you have already installed the `jq`
|
Note: make sure you have already installed the `jq`
|
||||||
|
|
||||||
|
Please visit [Spring Cloud Stream Kafka (Part 2)](https://tanzu.vmware.com/developer/guides/event-streaming/spring-cloud-stream-kafka-p2/) for Project documentation
|
||||||
|
|||||||
Reference in New Issue
Block a user