You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -207,7 +207,7 @@ therefore it would be useful to provide your own annotation. See
207
207
### Testing locally an example Spring Boot app with the Spring Starter
208
208
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)
209
209
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 SpringApplication you can use the
### 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
245
245
### Comparing Libraries
246
246
If you want to see the difference between this library and others like the
247
247
[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)
249
249
module. This allows you to test the performance and usage of each library for different scenarios, such as heavy IO message processing, etc.
Copy file name to clipboardExpand all lines: doc/how-to-guides/how-to-connect-to-aws-sqs-queue.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ better resources for learning about SQS queues, for example I used
7
7
write this guide.
8
8
9
9
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
Copy file name to clipboardExpand all lines: doc/how-to-guides/spring/spring-how-to-write-integration-tests.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
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
3
3
can be flaky and therefore you should prefer to call your message listener directly in your integration test when testing normal business logic.
4
4
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)
6
6
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
7
7
tests written includes test on:
8
8
- A message was received and able to be successfully processed
@@ -18,7 +18,7 @@ from all of the queues present in the SQS Server.
18
18
19
19
### Examples
20
20
The main example that should be used as a reference is the
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
0 commit comments