We do not yet support the full set of Spring-Data yet: Spring Data Reference Documentation
The issues page is another good place to look for ways to contribute.
The library is heavily based on Spring. Therefore this library should work in any environment that is supported by the underlying Spring Framework version itself.
At the time of writing this is JDK8 (binary compatibility).
Google’s Java code style is followed available here.
The proper formatting is checked during compile time. To easily follow the style use one of those options: 1. Use Eclipse Formatter with the src/eclipse-java-google-style.xml file. 1. Use IntelliJ Formatter with the src/eclipse-java-google-style.xml file. 1. Use mvn formatter:format to apply the style to the source files.
We use a rebase / cherry-pick strategy to merging code. This is to maintain a legible git history on the master branch. This has a few implications:
Testing is always important and the code coverage by unit tests should not decrease by new or adopted code.
DynamoDB comes with a lot of features. Therefore new supported features should always come with an Integration Test.
That means that it should have an ...IT.java test class that uses the local DynamoDB to demonstrate how the feature is used. This serves as proove that it is working (test case succeeds) and also as documentation and ‘how-to’. But an Integration Test should always be present next to regular Unit Tests that follow common, good practise to test a single class without requiring existence of external dependencies.