Skip to content

Spring cloud stream guide #112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Create better headings
  • Loading branch information
Mrc0113 committed Sep 20, 2019
commit b3360272f630a4eea0f5f0c834fce8124ca58cb3
12 changes: 6 additions & 6 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Also note that the dependency below is what enables us to use the Solace PubSub+
</dependency>
----

=== TemperatureSink.java
=== Code the Sink!
Open the TemperatureSink.java file in the `initial/cloud-streams-sink` project.
This class shows how simple it is to write a Spring Cloud Streams app that consumes events from PubSub+.

Expand Down Expand Up @@ -114,7 +114,7 @@ public class TemperatureSink {
}
----

=== Sink:application.yml
=== Configure the Sink
Next let's take a look at the application.yml file. Note that an application.properties file could be used instead.
Open the application.yml file in the `initial/cloud-streams-sink` project.

Expand Down Expand Up @@ -165,7 +165,7 @@ Leave the app running for the remainder of the tutorial & don't worry that no ev

== Create a Spring Cloud Stream Source

=== FahrenheitTempSource.java
=== Code the Source!
Open a new console/terminal if needed.
Open the FahrenheitTempSource.java file in the `initial/cloud-streams-source` project.
This class shows how simple it is to write a Spring Cloud Streams app that sends events to PubSub+.
Expand Down Expand Up @@ -209,7 +209,7 @@ public class FahrenheitTempSource {
}
----

=== Source:application.yml
=== Configure the Source!
Next let's take a look at the application.yml file. As stated earlier, an application.properties file could be used instead.
Open the application.yml file in the `initial/cloud-streams-source` project.

Expand Down Expand Up @@ -256,7 +256,7 @@ Leave the app running for the remainder of the tutorial.

== Create a Spring Cloud Stream Processor

=== ConvertFtoCProcessor.java
=== Code the Processor!
Open a new console/terminal if needed.
Open the ConvertFtoCProcessor.java file in the `initial/cloud-streams-processor` project.
This class shows how simple it is to write a Spring Cloud Streams app that receives, processesses & sends to PubSub+.
Expand Down Expand Up @@ -298,7 +298,7 @@ public class ConvertFtoCProcessor {
}
----

=== Processor:application.yml
=== Configure the Processor!
Next let's take a look at the application.yml file. As stated earlier, an application.properties file could be used instead.
Open the application.yml file in the `initial/cloud-streams-processor` project.

Expand Down