Skip to content

Commit d4dad4d

Browse files
refs #131: Fix up the now incorrect documentation links
1 parent 0064760 commit d4dad4d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ therefore it would be useful to provide your own annotation. See
207207
### Testing locally an example Spring Boot app with the Spring Starter
208208
The easiest way to see the framework working is to run one of the examples locally. These all use an in memory [ElasticMQ](https://github.com/adamw/elasticmq)
209209
SQS Server so you don't need to do any setting up of queues on AWS to test this yourself. For example to run a sample Spring Application you can use the
210-
[Spring Starter Example](examples/java-dynamic-sqs-listener-spring-starter-examples/src/main/java/com/jashmore/sqs/examples).
210+
[Spring Starter Example](examples/spring-starter-examples/src/main/java/com/jashmore/sqs/examples).
211211

212212
1. Build the framework
213213
```bash
@@ -216,7 +216,7 @@ mvn clean install -DskipTests
216216

217217
1. Run the Spring Starer Example Spring Boot app
218218
```bash
219-
(cd examples/java-dynamic-sqs-listener-spring-starter-examples && mvn spring-boot:run)
219+
(cd examples/spring-starter-examples && mvn spring-boot:run)
220220
```
221221

222222
### Testing locally a dynamic concurrency example
@@ -233,7 +233,7 @@ mvn clean install -DskipTests
233233

234234
1. Run the Spring Starer Example Spring Boot app
235235
```bash
236-
(cd examples/java-dynamic-sqs-listener-core-examples && mvn exec:java)
236+
(cd examples/core-examples && mvn exec:java)
237237
```
238238

239239
### Connecting to multiple AWS Accounts using the Spring Starter
@@ -245,7 +245,7 @@ at [How To Connect to Multiple AWS Accounts](doc/how-to-guides/spring/spring-how
245245
### Comparing Libraries
246246
If you want to see the difference between this library and others like the
247247
[Spring Cloud AWS Messaging](https://github.com/spring-cloud/spring-cloud-aws/tree/master/spring-cloud-aws-messaging) and
248-
[Amazon SQS Java Messaging Library](https://github.com/awslabs/amazon-sqs-java-messaging-lib), take a look at the [sqs-listener-libary-comparison](./examples/sqs-listener-library-comparison)
248+
[Amazon SQS Java Messaging Library](https://github.com/awslabs/amazon-sqs-java-messaging-lib), take a look at the [sqs-listener-library-comparison](./examples/sqs-listener-library-comparison)
249249
module. This allows you to test the performance and usage of each library for different scenarios, such as heavy IO message processing, etc.
250250

251251
### Other examples

doc/how-to-guides/how-to-connect-to-aws-sqs-queue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ better resources for learning about SQS queues, for example I used
77
write this guide.
88

99
In this example we are defining the SQS Properties needed via Environment variables in the application. See `SqsAsyncClient#create()` for more thorough
10-
documentation about different ways to define these properties. The [Spring AWS Example](../../examples/java-dynamic-sqs-listener-spring-aws-example) will be
10+
documentation about different ways to define these properties. The [Spring AWS Example](../../examples/spring-aws-example) will be
1111
used for this guide.
1212

1313
## Steps

doc/how-to-guides/spring/spring-how-to-write-integration-tests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
This guide provides details on how to write a simple integration test for a spring boot application. Note that writing integration tests through the SQS queue
33
can be flaky and therefore you should prefer to call your message listener directly in your integration test when testing normal business logic.
44

5-
For this guide the [Java Dynamic SQS Listener - Spring Integration Test Example](../../../examples/java-dynamic-sqs-listener-spring-integration-test-example)
5+
For this guide the [Java Dynamic SQS Listener - Spring Integration Test Example](../../../examples/spring-integration-test-example)
66
module will be used, which is a very simple application that has a single queue listener that calls out to a service when a message is retrieved. The
77
tests written includes test on:
88
- A message was received and able to be successfully processed
@@ -18,7 +18,7 @@ from all of the queues present in the SQS Server.
1818

1919
### Examples
2020
The main example that should be used as a reference is the
21-
[SqsListenerExampleIntegrationTest](../../../examples/java-dynamic-sqs-listener-spring-integration-test-example/src/test/java/it/com/jashmore/sqs/examples/integrationtests/SqsListenerExampleIntegrationTest.java)
21+
[SqsListenerExampleIntegrationTest](../../../examples/spring-integration-test-example/src/test/java/it/com/jashmore/sqs/examples/integrationtests/SqsListenerExampleIntegrationTest.java)
2222
which will test all of those scenarios described above using the methods described below. Otherwise any of the other integration tests in the spring starter
2323
module would be good examples.
2424

java-dynamic-sqs-listener-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ significant amount of use cases but if it doesn't the consumer can easily implem
44

55
## Usage
66

7-
See [java-dynamic-sqs-listener-core-examples](../examples/java-dynamic-sqs-listener-core-examples) for examples of
7+
See [java-dynamic-sqs-listener-core-examples](../examples/core-examples) for examples of
88
using this core code to listen to a queue.
99

1010
## More Information?

0 commit comments

Comments
 (0)