We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi i think that this:
spring-data-dynamodb/src/main/java/org/socialsignin/spring/data/dynamodb/repository/cdi/DynamoDBRepositoryExtension.java
Line 76 in 40bd99e
should be
... && AmazonDynamoDB.class ...
This way in a CDI context i can have a Producer of AmazonDynamoDB:
@Bean @Produces public AmazonDynamoDB amazonDynamoDB() { // return AmazonDynamoDBClientBuilder // .standard() // .withCredentials(amazonAWSCredentialsProvider()) // .withRegion(Regions.EU_WEST_1).build(); return AmazonDaxClientBuilder .standard() .withCredentials(amazonAWSCredentialsProvider()) .withRegion(Regions.EU_WEST_1) .withEndpointConfiguration("**********************************") .build(); }
Thanks
The text was updated successfully, but these errors were encountered:
Issue #228: Wrong class in CDI Extensions Check
62f4a1c
Resort to interface to be more flexible
Yes, resorting to the interface is all we need - no need to be that 'specific'
Will be part of 5.1.0 (Available as part of 5.1.0-SNAPSHOT as of now)
5.1.0
5.1.0-SNAPSHOT
Sorry, something went wrong.
Hi i'm not able to see this fix in 5.1.0 branch.
https://github.com/derjust/spring-data-dynamodb/blob/v5.1.0/src/main/java/org/socialsignin/spring/data/dynamodb/repository/cdi/DynamoDBRepositoryExtension.java
Do you need a pull request for this? When do you think this can be fixed?
Thank for your work 👍
No branches or pull requests
Hi i think that this:
spring-data-dynamodb/src/main/java/org/socialsignin/spring/data/dynamodb/repository/cdi/DynamoDBRepositoryExtension.java
Line 76 in 40bd99e
should be
This way in a CDI context i can have a Producer of AmazonDynamoDB:
Thanks
The text was updated successfully, but these errors were encountered: