Skip to content
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

To Staging: Change to cloud-hosted-guide-jms-intro #3506

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Changes from all commits
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
14 changes: 13 additions & 1 deletion instructions/cloud-hosted-guide-jms-intro/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,13 @@ The ***finish*** directory in the root of this guide contains the finished appli

To try out the application, first go to the ***finish*** directory and run the following Maven goal to build and install the ***models*** module. The ***models*** module contains the ***SystemLoad*** data class for both the ***system*** and ***inventory*** microservices to use.


```bash
cd finish
cd /home/project/guide-jms-intro/finish
mvn -pl models clean install
```


Start the ***inventory*** microservice by running the following command:

```bash
Expand All @@ -73,7 +75,9 @@ mvn -pl inventory liberty:run

Next, open another command-line session, navigate to the ***finish*** directory, and start the ***system*** microservice by using the following command:


```bash
cd /home/project/guide-jms-intro/finish
mvn -pl system liberty:run
```

Expand Down Expand Up @@ -320,6 +324,10 @@ To learn more about configuration for the ***jmsQueue*** element and ***jmsConne

Open another command-line session, navigate to the ***start*** directory, and run the following goal to start the ***system*** microservice in dev mode:

```bash
cd /home/project/guide-jms-intro/start
```

```bash
mvn -pl system liberty:dev
```
Expand Down Expand Up @@ -1126,13 +1134,17 @@ Replace the ***properties.wasJms*** configuration by the ***properties.wmqjmsra*

Start the ***inventory*** microservice by running the following command in dev mode:


```bash
cd /home/project/guide-jms-intro/start
mvn -pl inventory liberty:dev
```

Next, open another command-line session, navigate to the ***start*** directory, and start the ***system*** microservice by using the following command:


```bash
cd /home/project/guide-jms-intro/start
mvn -pl system liberty:dev
```

Expand Down
Loading