├── .gitignore
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── mvnw
├── mvnw.cmd
├── pom.xml
└── src
├── main
├── java
│ └── com
│ │ └── aws
│ │ └── samples
│ │ └── skiresort
│ │ ├── SkiresortApplication.java
│ │ ├── config
│ │ └── DynamoDBConfiguration.java
│ │ ├── convert
│ │ └── LocalDateConverter.java
│ │ └── domain
│ │ ├── AvalancheDanger.java
│ │ ├── LiftDynamicStats.java
│ │ ├── LiftStaticStats.java
│ │ ├── LiftStatus.java
│ │ └── Resort.java
└── resources
│ └── application.yml
└── test
└── java
└── com
└── aws
└── samples
└── skiresort
└── test
├── GlobalSecondaryIndexTestIT.java
├── LocalDBCreationExtension.java
├── ResortTestIT.java
├── RetrieveAllDataTestIT.java
└── config
└── DynamoDBIntegrationTestConfiguration.java
/.gitignore:
--------------------------------------------------------------------------------
1 | HELP.md
2 | native-libs
3 | target/
4 | !.mvn/wrapper/maven-wrapper.jar
5 | !**/src/main/**/target/
6 | !**/src/test/**/target/
7 |
8 | ### STS ###
9 | .apt_generated
10 | .classpath
11 | .factorypath
12 | .project
13 | .settings
14 | .springBeans
15 | .sts4-cache
16 |
17 | ### IntelliJ IDEA ###
18 | .idea
19 | *.iws
20 | *.iml
21 | *.ipr
22 |
23 | ### NetBeans ###
24 | /nbproject/private/
25 | /nbbuild/
26 | /dist/
27 | /nbdist/
28 | /.nb-gradle/
29 | build/
30 | !**/src/main/**/build/
31 | !**/src/test/**/build/
32 |
33 | ### VS Code ###
34 | .vscode/
35 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | ## Code of Conduct
2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
4 | opensource-codeofconduct@amazon.com with any additional questions or comments.
5 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing Guidelines
2 |
3 | Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional
4 | documentation, we greatly value feedback and contributions from our community.
5 |
6 | Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
7 | information to effectively respond to your bug report or contribution.
8 |
9 |
10 | ## Reporting Bugs/Feature Requests
11 |
12 | We welcome you to use the GitHub issue tracker to report bugs or suggest features.
13 |
14 | When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already
15 | reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
16 |
17 | * A reproducible test case or series of steps
18 | * The version of our code being used
19 | * Any modifications you've made relevant to the bug
20 | * Anything unusual about your environment or deployment
21 |
22 |
23 | ## Contributing via Pull Requests
24 | Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
25 |
26 | 1. You are working against the latest source on the *main* branch.
27 | 2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
28 | 3. You open an issue to discuss any significant work - we would hate for your time to be wasted.
29 |
30 | To send us a pull request, please:
31 |
32 | 1. Fork the repository.
33 | 2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
34 | 3. Ensure local tests pass.
35 | 4. Commit to your fork using clear commit messages.
36 | 5. Send us a pull request, answering any default questions in the pull request interface.
37 | 6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
38 |
39 | GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
40 | [creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
41 |
42 |
43 | ## Finding contributions to work on
44 | Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.
45 |
46 |
47 | ## Code of Conduct
48 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
49 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
50 | opensource-codeofconduct@amazon.com with any additional questions or comments.
51 |
52 |
53 | ## Security issue notifications
54 | If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
55 |
56 |
57 | ## Licensing
58 |
59 | See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
60 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of
4 | this software and associated documentation files (the "Software"), to deal in
5 | the Software without restriction, including without limitation the rights to
6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
7 | the Software, and to permit persons to whom the Software is furnished to do so.
8 |
9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
10 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
11 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
12 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
13 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
14 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15 |
16 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Ski Resort example using Amazon DynamoDB based on Single Table Design using AWS SDK for Java v1
2 |
3 |
4 | This is the _**sample**_ code that comes together with [the blog post on Amazon DynamoDB Single Table Design using DynamoDBMapper & Spring Boot](https://aws.amazon.com/blogs/database/amazon-dynamodb-single-table-design-using-dynamodbmapper-and-spring-boot/).
5 |
6 | The purpose of this sample code is to demonstrate how you can apply the Single Table Design concept in Java / Spring Boot based applications.
7 |
8 | The sample code demonstrates some relevant access patterns using local integration tests using DynamoDB Local.
9 |
10 | To run the tests locally when Apache Maven is already installed:
11 |
12 | `mvn clean verify`
13 |
14 |
15 | If Apache Maven is not installed the included Maven Wrapper can be used. Maven version used by the wrapper can be updated in `./mvn/wrapper/maven-wrapper.properties`.
16 |
17 | To run the test locally using the Maven Wrapper:
18 |
19 | `./mvnw clean verify`
20 |
21 |
22 |
23 | ### Single Table data model
24 |
25 | The domain classes in this example store all data in the same table:
26 |
27 |
28 |
29 |
30 | Skilifts Table |
31 |
32 |
33 | Primary key |
34 | Attributes |
35 |
36 |
37 | PK |
38 | SK |
39 | Date |
40 | TotalUniqueLiftRiders |
41 | AverageSnowCoverageInches |
42 | AvalancheDanger |
43 | OpenLifts |
44 | ExperiencedRidersOnly |
45 | VerticalFeet |
46 | LiftTime |
47 | LiftNumber |
48 |
49 |
50 |
51 |
52 | RESORT_DATA |
53 | DATE#07-03-2021 |
54 | 07-03-2021 |
55 | 7788 |
56 | 50 |
57 | HIGH |
58 | 60 |
59 | |
60 | |
61 | |
62 | |
63 |
64 |
65 | RESORT_DATA |
66 | DATE#08-03-2021 |
67 | 08-03-2021 |
68 | 6699 |
69 | 40 |
70 | MODERATE |
71 | 60 |
72 | |
73 | |
74 | |
75 | |
76 |
77 |
78 | RESORT_DATA |
79 | DATE#09-03-2021 |
80 | 09-03-2021 |
81 | 5678 |
82 | 65 |
83 | EXTREME |
84 | 53 |
85 | |
86 | |
87 | |
88 | |
89 |
90 |
91 | LIFT#1234 |
92 | STATIC_DATA |
93 | |
94 | |
95 | |
96 | |
97 | |
98 | TRUE |
99 | 1230 |
100 | 7:00 |
101 | 4545 |
102 |
103 |
104 | LIFT#1234 |
105 | DATE#07-03-2021 |
106 | 07-03-2021 |
107 | 3000 |
108 | 60 |
109 | HIGH |
110 | OPEN |
111 | |
112 | |
113 | |
114 | |
115 |
116 |
117 |
118 |
119 | ## Security
120 |
121 | See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information.
122 |
123 | ## License
124 |
125 | This library is licensed under the MIT-0 License. See the LICENSE file.
126 |
127 |
--------------------------------------------------------------------------------
/mvnw:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | # ----------------------------------------------------------------------------
3 | # Licensed to the Apache Software Foundation (ASF) under one
4 | # or more contributor license agreements. See the NOTICE file
5 | # distributed with this work for additional information
6 | # regarding copyright ownership. The ASF licenses this file
7 | # to you under the Apache License, Version 2.0 (the
8 | # "License"); you may not use this file except in compliance
9 | # with the License. You may obtain a copy of the License at
10 | #
11 | # https://www.apache.org/licenses/LICENSE-2.0
12 | #
13 | # Unless required by applicable law or agreed to in writing,
14 | # software distributed under the License is distributed on an
15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 | # KIND, either express or implied. See the License for the
17 | # specific language governing permissions and limitations
18 | # under the License.
19 | # ----------------------------------------------------------------------------
20 |
21 | # ----------------------------------------------------------------------------
22 | # Maven Start Up Batch script
23 | #
24 | # Required ENV vars:
25 | # ------------------
26 | # JAVA_HOME - location of a JDK home dir
27 | #
28 | # Optional ENV vars
29 | # -----------------
30 | # M2_HOME - location of maven2's installed home dir
31 | # MAVEN_OPTS - parameters passed to the Java VM when running Maven
32 | # e.g. to debug Maven itself, use
33 | # set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
34 | # MAVEN_SKIP_RC - flag to disable loading of mavenrc files
35 | # ----------------------------------------------------------------------------
36 |
37 | if [ -z "$MAVEN_SKIP_RC" ] ; then
38 |
39 | if [ -f /etc/mavenrc ] ; then
40 | . /etc/mavenrc
41 | fi
42 |
43 | if [ -f "$HOME/.mavenrc" ] ; then
44 | . "$HOME/.mavenrc"
45 | fi
46 |
47 | fi
48 |
49 | # OS specific support. $var _must_ be set to either true or false.
50 | cygwin=false;
51 | darwin=false;
52 | mingw=false
53 | case "`uname`" in
54 | CYGWIN*) cygwin=true ;;
55 | MINGW*) mingw=true;;
56 | Darwin*) darwin=true
57 | # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
58 | # See https://developer.apple.com/library/mac/qa/qa1170/_index.html
59 | if [ -z "$JAVA_HOME" ]; then
60 | if [ -x "/usr/libexec/java_home" ]; then
61 | export JAVA_HOME="`/usr/libexec/java_home`"
62 | else
63 | export JAVA_HOME="/Library/Java/Home"
64 | fi
65 | fi
66 | ;;
67 | esac
68 |
69 | if [ -z "$JAVA_HOME" ] ; then
70 | if [ -r /etc/gentoo-release ] ; then
71 | JAVA_HOME=`java-config --jre-home`
72 | fi
73 | fi
74 |
75 | if [ -z "$M2_HOME" ] ; then
76 | ## resolve links - $0 may be a link to maven's home
77 | PRG="$0"
78 |
79 | # need this for relative symlinks
80 | while [ -h "$PRG" ] ; do
81 | ls=`ls -ld "$PRG"`
82 | link=`expr "$ls" : '.*-> \(.*\)$'`
83 | if expr "$link" : '/.*' > /dev/null; then
84 | PRG="$link"
85 | else
86 | PRG="`dirname "$PRG"`/$link"
87 | fi
88 | done
89 |
90 | saveddir=`pwd`
91 |
92 | M2_HOME=`dirname "$PRG"`/..
93 |
94 | # make it fully qualified
95 | M2_HOME=`cd "$M2_HOME" && pwd`
96 |
97 | cd "$saveddir"
98 | # echo Using m2 at $M2_HOME
99 | fi
100 |
101 | # For Cygwin, ensure paths are in UNIX format before anything is touched
102 | if $cygwin ; then
103 | [ -n "$M2_HOME" ] &&
104 | M2_HOME=`cygpath --unix "$M2_HOME"`
105 | [ -n "$JAVA_HOME" ] &&
106 | JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
107 | [ -n "$CLASSPATH" ] &&
108 | CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
109 | fi
110 |
111 | # For Mingw, ensure paths are in UNIX format before anything is touched
112 | if $mingw ; then
113 | [ -n "$M2_HOME" ] &&
114 | M2_HOME="`(cd "$M2_HOME"; pwd)`"
115 | [ -n "$JAVA_HOME" ] &&
116 | JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
117 | fi
118 |
119 | if [ -z "$JAVA_HOME" ]; then
120 | javaExecutable="`which javac`"
121 | if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
122 | # readlink(1) is not available as standard on Solaris 10.
123 | readLink=`which readlink`
124 | if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
125 | if $darwin ; then
126 | javaHome="`dirname \"$javaExecutable\"`"
127 | javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
128 | else
129 | javaExecutable="`readlink -f \"$javaExecutable\"`"
130 | fi
131 | javaHome="`dirname \"$javaExecutable\"`"
132 | javaHome=`expr "$javaHome" : '\(.*\)/bin'`
133 | JAVA_HOME="$javaHome"
134 | export JAVA_HOME
135 | fi
136 | fi
137 | fi
138 |
139 | if [ -z "$JAVACMD" ] ; then
140 | if [ -n "$JAVA_HOME" ] ; then
141 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
142 | # IBM's JDK on AIX uses strange locations for the executables
143 | JAVACMD="$JAVA_HOME/jre/sh/java"
144 | else
145 | JAVACMD="$JAVA_HOME/bin/java"
146 | fi
147 | else
148 | JAVACMD="`which java`"
149 | fi
150 | fi
151 |
152 | if [ ! -x "$JAVACMD" ] ; then
153 | echo "Error: JAVA_HOME is not defined correctly." >&2
154 | echo " We cannot execute $JAVACMD" >&2
155 | exit 1
156 | fi
157 |
158 | if [ -z "$JAVA_HOME" ] ; then
159 | echo "Warning: JAVA_HOME environment variable is not set."
160 | fi
161 |
162 | CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
163 |
164 | # traverses directory structure from process work directory to filesystem root
165 | # first directory with .mvn subdirectory is considered project base directory
166 | find_maven_basedir() {
167 |
168 | if [ -z "$1" ]
169 | then
170 | echo "Path not specified to find_maven_basedir"
171 | return 1
172 | fi
173 |
174 | basedir="$1"
175 | wdir="$1"
176 | while [ "$wdir" != '/' ] ; do
177 | if [ -d "$wdir"/.mvn ] ; then
178 | basedir=$wdir
179 | break
180 | fi
181 | # workaround for JBEAP-8937 (on Solaris 10/Sparc)
182 | if [ -d "${wdir}" ]; then
183 | wdir=`cd "$wdir/.."; pwd`
184 | fi
185 | # end of workaround
186 | done
187 | echo "${basedir}"
188 | }
189 |
190 | # concatenates all lines of a file
191 | concat_lines() {
192 | if [ -f "$1" ]; then
193 | echo "$(tr -s '\n' ' ' < "$1")"
194 | fi
195 | }
196 |
197 | BASE_DIR=`find_maven_basedir "$(pwd)"`
198 | if [ -z "$BASE_DIR" ]; then
199 | exit 1;
200 | fi
201 |
202 | ##########################################################################################
203 | # Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
204 | # This allows using the maven wrapper in projects that prohibit checking in binary data.
205 | ##########################################################################################
206 | if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
207 | if [ "$MVNW_VERBOSE" = true ]; then
208 | echo "Found .mvn/wrapper/maven-wrapper.jar"
209 | fi
210 | else
211 | if [ "$MVNW_VERBOSE" = true ]; then
212 | echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
213 | fi
214 | if [ -n "$MVNW_REPOURL" ]; then
215 | jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
216 | else
217 | jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
218 | fi
219 | while IFS="=" read key value; do
220 | case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
221 | esac
222 | done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
223 | if [ "$MVNW_VERBOSE" = true ]; then
224 | echo "Downloading from: $jarUrl"
225 | fi
226 | wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
227 | if $cygwin; then
228 | wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"`
229 | fi
230 |
231 | if command -v wget > /dev/null; then
232 | if [ "$MVNW_VERBOSE" = true ]; then
233 | echo "Found wget ... using wget"
234 | fi
235 | if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
236 | wget "$jarUrl" -O "$wrapperJarPath"
237 | else
238 | wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath"
239 | fi
240 | elif command -v curl > /dev/null; then
241 | if [ "$MVNW_VERBOSE" = true ]; then
242 | echo "Found curl ... using curl"
243 | fi
244 | if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
245 | curl -o "$wrapperJarPath" "$jarUrl" -f
246 | else
247 | curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f
248 | fi
249 |
250 | else
251 | if [ "$MVNW_VERBOSE" = true ]; then
252 | echo "Falling back to using Java to download"
253 | fi
254 | javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
255 | # For Cygwin, switch paths to Windows format before running javac
256 | if $cygwin; then
257 | javaClass=`cygpath --path --windows "$javaClass"`
258 | fi
259 | if [ -e "$javaClass" ]; then
260 | if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
261 | if [ "$MVNW_VERBOSE" = true ]; then
262 | echo " - Compiling MavenWrapperDownloader.java ..."
263 | fi
264 | # Compiling the Java class
265 | ("$JAVA_HOME/bin/javac" "$javaClass")
266 | fi
267 | if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
268 | # Running the downloader
269 | if [ "$MVNW_VERBOSE" = true ]; then
270 | echo " - Running MavenWrapperDownloader.java ..."
271 | fi
272 | ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
273 | fi
274 | fi
275 | fi
276 | fi
277 | ##########################################################################################
278 | # End of extension
279 | ##########################################################################################
280 |
281 | export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
282 | if [ "$MVNW_VERBOSE" = true ]; then
283 | echo $MAVEN_PROJECTBASEDIR
284 | fi
285 | MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
286 |
287 | # For Cygwin, switch paths to Windows format before running java
288 | if $cygwin; then
289 | [ -n "$M2_HOME" ] &&
290 | M2_HOME=`cygpath --path --windows "$M2_HOME"`
291 | [ -n "$JAVA_HOME" ] &&
292 | JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
293 | [ -n "$CLASSPATH" ] &&
294 | CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
295 | [ -n "$MAVEN_PROJECTBASEDIR" ] &&
296 | MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
297 | fi
298 |
299 | # Provide a "standardized" way to retrieve the CLI args that will
300 | # work with both Windows and non-Windows executions.
301 | MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
302 | export MAVEN_CMD_LINE_ARGS
303 |
304 | WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
305 |
306 | exec "$JAVACMD" \
307 | $MAVEN_OPTS \
308 | -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
309 | "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
310 | ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
311 |
--------------------------------------------------------------------------------
/mvnw.cmd:
--------------------------------------------------------------------------------
1 | @REM ----------------------------------------------------------------------------
2 | @REM Licensed to the Apache Software Foundation (ASF) under one
3 | @REM or more contributor license agreements. See the NOTICE file
4 | @REM distributed with this work for additional information
5 | @REM regarding copyright ownership. The ASF licenses this file
6 | @REM to you under the Apache License, Version 2.0 (the
7 | @REM "License"); you may not use this file except in compliance
8 | @REM with the License. You may obtain a copy of the License at
9 | @REM
10 | @REM https://www.apache.org/licenses/LICENSE-2.0
11 | @REM
12 | @REM Unless required by applicable law or agreed to in writing,
13 | @REM software distributed under the License is distributed on an
14 | @REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 | @REM KIND, either express or implied. See the License for the
16 | @REM specific language governing permissions and limitations
17 | @REM under the License.
18 | @REM ----------------------------------------------------------------------------
19 |
20 | @REM ----------------------------------------------------------------------------
21 | @REM Maven Start Up Batch script
22 | @REM
23 | @REM Required ENV vars:
24 | @REM JAVA_HOME - location of a JDK home dir
25 | @REM
26 | @REM Optional ENV vars
27 | @REM M2_HOME - location of maven2's installed home dir
28 | @REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
29 | @REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
30 | @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
31 | @REM e.g. to debug Maven itself, use
32 | @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
33 | @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
34 | @REM ----------------------------------------------------------------------------
35 |
36 | @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
37 | @echo off
38 | @REM set title of command window
39 | title %0
40 | @REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
41 | @if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
42 |
43 | @REM set %HOME% to equivalent of $HOME
44 | if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
45 |
46 | @REM Execute a user defined script before this one
47 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
48 | @REM check for pre script, once with legacy .bat ending and once with .cmd ending
49 | if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
50 | if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
51 | :skipRcPre
52 |
53 | @setlocal
54 |
55 | set ERROR_CODE=0
56 |
57 | @REM To isolate internal variables from possible post scripts, we use another setlocal
58 | @setlocal
59 |
60 | @REM ==== START VALIDATION ====
61 | if not "%JAVA_HOME%" == "" goto OkJHome
62 |
63 | echo.
64 | echo Error: JAVA_HOME not found in your environment. >&2
65 | echo Please set the JAVA_HOME variable in your environment to match the >&2
66 | echo location of your Java installation. >&2
67 | echo.
68 | goto error
69 |
70 | :OkJHome
71 | if exist "%JAVA_HOME%\bin\java.exe" goto init
72 |
73 | echo.
74 | echo Error: JAVA_HOME is set to an invalid directory. >&2
75 | echo JAVA_HOME = "%JAVA_HOME%" >&2
76 | echo Please set the JAVA_HOME variable in your environment to match the >&2
77 | echo location of your Java installation. >&2
78 | echo.
79 | goto error
80 |
81 | @REM ==== END VALIDATION ====
82 |
83 | :init
84 |
85 | @REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
86 | @REM Fallback to current working directory if not found.
87 |
88 | set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
89 | IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
90 |
91 | set EXEC_DIR=%CD%
92 | set WDIR=%EXEC_DIR%
93 | :findBaseDir
94 | IF EXIST "%WDIR%"\.mvn goto baseDirFound
95 | cd ..
96 | IF "%WDIR%"=="%CD%" goto baseDirNotFound
97 | set WDIR=%CD%
98 | goto findBaseDir
99 |
100 | :baseDirFound
101 | set MAVEN_PROJECTBASEDIR=%WDIR%
102 | cd "%EXEC_DIR%"
103 | goto endDetectBaseDir
104 |
105 | :baseDirNotFound
106 | set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
107 | cd "%EXEC_DIR%"
108 |
109 | :endDetectBaseDir
110 |
111 | IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
112 |
113 | @setlocal EnableExtensions EnableDelayedExpansion
114 | for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
115 | @endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
116 |
117 | :endReadAdditionalConfig
118 |
119 | SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
120 | set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
121 | set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
122 |
123 | set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
124 |
125 | FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
126 | IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
127 | )
128 |
129 | @REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
130 | @REM This allows using the maven wrapper in projects that prohibit checking in binary data.
131 | if exist %WRAPPER_JAR% (
132 | if "%MVNW_VERBOSE%" == "true" (
133 | echo Found %WRAPPER_JAR%
134 | )
135 | ) else (
136 | if not "%MVNW_REPOURL%" == "" (
137 | SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
138 | )
139 | if "%MVNW_VERBOSE%" == "true" (
140 | echo Couldn't find %WRAPPER_JAR%, downloading it ...
141 | echo Downloading from: %DOWNLOAD_URL%
142 | )
143 |
144 | powershell -Command "&{"^
145 | "$webclient = new-object System.Net.WebClient;"^
146 | "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
147 | "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
148 | "}"^
149 | "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
150 | "}"
151 | if "%MVNW_VERBOSE%" == "true" (
152 | echo Finished downloading %WRAPPER_JAR%
153 | )
154 | )
155 | @REM End of extension
156 |
157 | @REM Provide a "standardized" way to retrieve the CLI args that will
158 | @REM work with both Windows and non-Windows executions.
159 | set MAVEN_CMD_LINE_ARGS=%*
160 |
161 | %MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
162 | if ERRORLEVEL 1 goto error
163 | goto end
164 |
165 | :error
166 | set ERROR_CODE=1
167 |
168 | :end
169 | @endlocal & set ERROR_CODE=%ERROR_CODE%
170 |
171 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
172 | @REM check for post script, once with legacy .bat ending and once with .cmd ending
173 | if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
174 | if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
175 | :skipRcPost
176 |
177 | @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
178 | if "%MAVEN_BATCH_PAUSE%" == "on" pause
179 |
180 | if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
181 |
182 | exit /B %ERROR_CODE%
183 |
--------------------------------------------------------------------------------
/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 |
6 | org.springframework.boot
7 | spring-boot-starter-parent
8 | 2.4.2
9 |
10 |
11 | com.aws.samples
12 | skiresort
13 | 0.0.1-SNAPSHOT
14 | skiresort
15 | Demo project for Amazon DynamoDB Single Table Design
16 |
17 | 11
18 | 1.11.959
19 | 1.15.0
20 | 2.22.2
21 |
22 |
23 |
24 |
25 | com.amazonaws
26 | aws-java-sdk-bom
27 | ${aws.sdk.version}
28 | pom
29 | import
30 |
31 |
32 |
33 |
34 |
35 | org.springframework.boot
36 | spring-boot-starter
37 |
38 |
39 | org.projectlombok
40 | lombok
41 |
42 |
43 | com.amazonaws
44 | aws-java-sdk-dynamodb
45 |
46 |
47 | org.springframework.boot
48 | spring-boot-starter-actuator
49 |
50 |
51 | org.springframework.boot
52 | spring-boot-starter-test
53 | test
54 |
55 |
56 | org.apache.maven.plugins
57 | maven-failsafe-plugin
58 | ${maven.failsafe.version}
59 | test
60 |
61 |
62 | com.amazonaws
63 | DynamoDBLocal
64 | ${dynamodb.local.version}
65 | test
66 |
67 |
68 |
69 |
70 |
71 |
72 | org.springframework.boot
73 | spring-boot-maven-plugin
74 | 2.4.2
75 |
76 |
77 |
78 | org.projectlombok
79 | lombok
80 |
81 |
82 |
83 |
84 |
85 | org.apache.maven.plugins
86 | maven-dependency-plugin
87 | 3.1.2
88 |
89 |
90 | copy
91 | test-compile
92 |
93 | copy-dependencies
94 |
95 |
96 | test
97 | so,dll,dylib
98 | ${project.basedir}/native-libs
99 |
100 |
101 |
102 |
103 |
104 | org.apache.maven.plugins
105 | maven-failsafe-plugin
106 | ${maven.failsafe.version}
107 |
108 |
109 |
110 | integration-test
111 | verify
112 |
113 |
114 |
115 | **/*IT
116 | **/ITCase
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 | dynamodb-local-frankfurt
128 | DynamoDB Local Release Repository
129 | https://s3.eu-central-1.amazonaws.com/dynamodb-local-frankfurt/release
130 |
131 |
132 |
133 |
--------------------------------------------------------------------------------
/src/main/java/com/aws/samples/skiresort/SkiresortApplication.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort;
18 |
19 | import org.springframework.boot.SpringApplication;
20 | import org.springframework.boot.autoconfigure.SpringBootApplication;
21 |
22 | @SpringBootApplication
23 | public class SkiresortApplication {
24 |
25 | public static void main(String[] args) {
26 | SpringApplication.run(SkiresortApplication.class, args);
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/src/main/java/com/aws/samples/skiresort/config/DynamoDBConfiguration.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.config;
18 |
19 | import com.amazonaws.client.builder.AwsClientBuilder;
20 | import com.amazonaws.services.dynamodbv2.AmazonDynamoDB;
21 | import com.amazonaws.services.dynamodbv2.AmazonDynamoDBClientBuilder;
22 | import org.springframework.beans.factory.annotation.Value;
23 | import org.springframework.context.annotation.Bean;
24 | import org.springframework.context.annotation.Configuration;
25 |
26 | @Configuration
27 | public class DynamoDBConfiguration {
28 |
29 | @Value("${amazon.region}")
30 | private String region;
31 |
32 | @Value("${dynamodb.endpoint.url}")
33 | private String dynamoDBEndpoint;
34 |
35 | @Bean
36 | public AmazonDynamoDB amazonDynamoDB() {
37 | return AmazonDynamoDBClientBuilder
38 | .standard()
39 | .withEndpointConfiguration(new AwsClientBuilder.EndpointConfiguration(dynamoDBEndpoint, region))
40 | .build();
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/src/main/java/com/aws/samples/skiresort/convert/LocalDateConverter.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.convert;
18 |
19 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBTypeConverter;
20 |
21 | import java.time.LocalDate;
22 |
23 | public class LocalDateConverter implements DynamoDBTypeConverter {
24 |
25 | @Override
26 | public String convert(LocalDate localDate) {
27 | return localDate.toString();
28 | }
29 |
30 | @Override
31 | public LocalDate unconvert(String localDate) {
32 | return LocalDate.parse(localDate);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/src/main/java/com/aws/samples/skiresort/domain/AvalancheDanger.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.domain;
18 |
19 | public enum AvalancheDanger {
20 | EXTREME,
21 | HIGH,
22 | MODERATE,
23 | LOW
24 | }
25 |
--------------------------------------------------------------------------------
/src/main/java/com/aws/samples/skiresort/domain/LiftDynamicStats.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.domain;
18 |
19 | import com.amazonaws.services.dynamodbv2.datamodeling.*;
20 | import com.aws.samples.skiresort.convert.LocalDateConverter;
21 | import lombok.AllArgsConstructor;
22 | import lombok.Builder;
23 | import lombok.Data;
24 | import lombok.NoArgsConstructor;
25 |
26 | import java.time.LocalDate;
27 |
28 | @AllArgsConstructor
29 | @Builder
30 | @Data
31 | @DynamoDBTable(tableName = "SkiLifts")
32 | @NoArgsConstructor
33 | public class LiftDynamicStats {
34 |
35 | @DynamoDBAttribute(attributeName = "Date")
36 | @DynamoDBTypeConverted(converter = LocalDateConverter.class)
37 | private LocalDate date;
38 |
39 | @DynamoDBAttribute(attributeName = "TotalUniqueLiftRiders")
40 | private int totalUniqueLiftRiders;
41 |
42 | @DynamoDBAttribute(attributeName = "AverageSnowCoverageInches")
43 | private int averageSnowCoverageInches;
44 |
45 | @DynamoDBAttribute(attributeName = "LiftStatus")
46 | @DynamoDBTypeConvertedEnum
47 | private LiftStatus liftStatus;
48 |
49 | @DynamoDBAttribute(attributeName = "AvalancheDanger")
50 | @DynamoDBTypeConvertedEnum
51 | private AvalancheDanger avalancheDanger;
52 |
53 | @DynamoDBAttribute(attributeName = "LiftNumber")
54 | private int liftNumber;
55 |
56 | @DynamoDBHashKey(attributeName = "PK")
57 | public String getPK() {
58 | return "LIFT#" + liftNumber;
59 | }
60 |
61 | public void setPK(String pk) {
62 | // intentionally left blank: PK is set by setting liftNumber attribute
63 | }
64 |
65 | @DynamoDBRangeKey(attributeName = "SK")
66 | public String getSK() {
67 | return "DATE#" + date;
68 | }
69 |
70 | public void setSK(String sk) {
71 | // intentionally left blank: SK is set by setting the date attribute
72 | }
73 |
74 | @DynamoDBIndexHashKey(attributeName = "GSI_1_PK", globalSecondaryIndexName = "GSI_1")
75 | public String getGSI1PK() {
76 | return getPK();
77 | }
78 |
79 | public void setGSI1PK(String gsi1Pk) {
80 | // intentionally left blank: PK is set by setting liftNumber attribute
81 | }
82 |
83 | @DynamoDBIndexRangeKey(attributeName = "GSI_1_SK", globalSecondaryIndexName = "GSI_1")
84 | public String getGSI1SK() {
85 | return "TOTAL_UNIQUE_LIF_RIDERS#" + totalUniqueLiftRiders;
86 | }
87 |
88 | public void setGSI1SK(String gsi1Sk) {
89 | // intentionally left blank: SK is set by setting the totalUniqueLiftRiders attribute
90 | }
91 | }
--------------------------------------------------------------------------------
/src/main/java/com/aws/samples/skiresort/domain/LiftStaticStats.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.domain;
18 |
19 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBAttribute;
20 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBHashKey;
21 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBRangeKey;
22 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBTable;
23 | import lombok.AllArgsConstructor;
24 | import lombok.Builder;
25 | import lombok.Data;
26 | import lombok.NoArgsConstructor;
27 |
28 | @AllArgsConstructor
29 | @Builder
30 | @Data
31 | @DynamoDBTable(tableName = "SkiLifts")
32 | @NoArgsConstructor
33 | public class LiftStaticStats {
34 |
35 | @DynamoDBAttribute(attributeName = "ExperiencedRidersOnly")
36 | private boolean experiencedRidersOnly;
37 |
38 | @DynamoDBAttribute(attributeName = "VerticalFeet")
39 | private int verticalFeet;
40 |
41 | @DynamoDBAttribute(attributeName = "LiftTime")
42 | private String liftTime;
43 |
44 | @DynamoDBAttribute(attributeName = "LiftNumber")
45 | private int liftNumber;
46 |
47 | @DynamoDBHashKey(attributeName = "PK")
48 | public String getPK() {
49 | return "LIFT#" + liftNumber;
50 | }
51 |
52 | public void setPK(String pk) {
53 | // intentionally left blank: PK is set by setting liftNumber attribute
54 | }
55 |
56 | @DynamoDBRangeKey(attributeName = "SK")
57 | public String getSK() {
58 | return "STATIC_DATA";
59 | }
60 |
61 | public void setSK(String sk) {
62 | // intentionally left blank: SK is static data
63 | }
64 | }
--------------------------------------------------------------------------------
/src/main/java/com/aws/samples/skiresort/domain/LiftStatus.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.domain;
18 |
19 | public enum LiftStatus {
20 | CLOSED,
21 | OPEN,
22 | PENDING
23 | }
24 |
--------------------------------------------------------------------------------
/src/main/java/com/aws/samples/skiresort/domain/Resort.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.domain;
18 |
19 | import com.amazonaws.services.dynamodbv2.datamodeling.*;
20 | import com.aws.samples.skiresort.convert.LocalDateConverter;
21 | import lombok.AllArgsConstructor;
22 | import lombok.Builder;
23 | import lombok.Data;
24 | import lombok.NoArgsConstructor;
25 |
26 | import java.time.LocalDate;
27 | import java.util.Set;
28 |
29 | @AllArgsConstructor
30 | @Builder
31 | @Data
32 | @DynamoDBTable(tableName = "SkiLifts")
33 | @NoArgsConstructor
34 | public class Resort {
35 |
36 | @DynamoDBAttribute(attributeName = "Date")
37 | @DynamoDBTypeConverted(converter = LocalDateConverter.class)
38 | @DynamoDBTyped(DynamoDBMapperFieldModel.DynamoDBAttributeType.S)
39 | private LocalDate date;
40 |
41 | @DynamoDBAttribute(attributeName = "TotalUniqueLiftRiders")
42 | private int totalUniqueLiftRiders;
43 |
44 | @DynamoDBAttribute(attributeName = "AverageSnowCoverageInches")
45 | private int averageSnowCoverageInches;
46 |
47 | @DynamoDBAttribute(attributeName = "AvalancheDanger")
48 | @DynamoDBTypeConvertedEnum
49 | private AvalancheDanger avalancheDanger;
50 |
51 | @DynamoDBAttribute(attributeName = "OpenLifts")
52 | private Set openLifts;
53 |
54 | @DynamoDBHashKey(attributeName = "PK")
55 | public String getPK() {
56 | return "RESORT_DATA";
57 | }
58 |
59 | public void setPK(String pk) {
60 | // intentionally left blank: PK is static data
61 | }
62 |
63 | @DynamoDBRangeKey(attributeName = "SK")
64 | public String getSK() {
65 | return "DATE#" + date;
66 | }
67 |
68 | public void setSK(String sk) {
69 | // intentionally left blank: SK is set by setting the date attribute
70 | }
71 |
72 | @DynamoDBIndexHashKey(attributeName = "GSI_1_PK", globalSecondaryIndexName = "GSI_1")
73 | public String getGSI1PK() {
74 | return getPK();
75 | }
76 |
77 | public void setGSI1PK(String pk) {
78 | // intentionally left blank: PK is static data
79 | }
80 |
81 | @DynamoDBIndexRangeKey( attributeName = "GSI_1_SK", globalSecondaryIndexName = "GSI_1")
82 | public String getGSI1SK() {
83 | return "TOTAL_UNIQUE_LIFT_RIDERS#" + getTotalUniqueLiftRiders();
84 | }
85 |
86 | public void setGSI1SK(String sk) {
87 | // intentionally left blank: SK is set by setting the totalUniqueLiftRiders attribute
88 | }
89 | }
--------------------------------------------------------------------------------
/src/main/resources/application.yml:
--------------------------------------------------------------------------------
1 | # configuration required for DynamoDB Local. Don't store AWS credentials in a configuration file use AWS Secrets Manager instead.
2 | # https://docs.aws.amazon.com/prescriptive-guidance/latest/patterns/manage-credentials-using-aws-secrets-manager.html
3 | amazon:
4 | access:
5 | key: key
6 | secretkey: secret-key
7 | region: local
8 | dynamodb:
9 | endpoint:
10 | url: http://localhost:8000/
11 |
--------------------------------------------------------------------------------
/src/test/java/com/aws/samples/skiresort/test/GlobalSecondaryIndexTestIT.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.test;
18 |
19 | import com.amazonaws.services.dynamodbv2.AmazonDynamoDB;
20 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapper;
21 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBQueryExpression;
22 | import com.amazonaws.services.dynamodbv2.model.AttributeValue;
23 | import com.aws.samples.skiresort.domain.AvalancheDanger;
24 | import com.aws.samples.skiresort.domain.LiftDynamicStats;
25 | import com.aws.samples.skiresort.test.config.DynamoDBIntegrationTestConfiguration;
26 | import org.junit.jupiter.api.AfterEach;
27 | import org.junit.jupiter.api.BeforeEach;
28 | import org.junit.jupiter.api.Test;
29 | import org.junit.jupiter.api.extension.ExtendWith;
30 | import org.springframework.beans.factory.annotation.Autowired;
31 | import org.springframework.boot.test.context.SpringBootTest;
32 |
33 | import java.time.LocalDate;
34 | import java.util.ArrayList;
35 | import java.util.List;
36 | import java.util.Map;
37 |
38 | import static org.junit.jupiter.api.Assertions.assertEquals;
39 | import static org.junit.jupiter.api.Assertions.assertNotNull;
40 |
41 | @ExtendWith(LocalDBCreationExtension.class)
42 | @SpringBootTest
43 | public class GlobalSecondaryIndexTestIT {
44 |
45 | @Autowired
46 | private AmazonDynamoDB amazonDynamoDB;
47 |
48 | @Autowired
49 | private DynamoDBIntegrationTestConfiguration dynamoDBIntegrationTestConfiguration;
50 |
51 | @BeforeEach
52 | public void initDataModel() {
53 | dynamoDBIntegrationTestConfiguration.dynamoDBLocalSetup();
54 | }
55 |
56 | @AfterEach
57 | public void verifyEmptyDatabase() {
58 | assertEquals(0, dynamoDBIntegrationTestConfiguration.getItemCount());
59 | }
60 |
61 | @Test
62 | void testRetrieveDateOfLiftDataSortedByTotalUniqueLift() {
63 |
64 | DynamoDBMapper mapper = new DynamoDBMapper(amazonDynamoDB);
65 |
66 | assertEquals(0, dynamoDBIntegrationTestConfiguration.getItemCount());
67 | int lift1 = 6789;
68 | int lift2 = 5678;
69 |
70 | // create dynamic test data
71 | LocalDate now = LocalDate.now();
72 | List dynamicStatsList = new ArrayList();
73 | for(int i = 0; i < 3; i++) {
74 | LiftDynamicStats dynamicStatsLift1 = LiftDynamicStats.builder()
75 | .avalancheDanger(AvalancheDanger.HIGH)
76 | .averageSnowCoverageInches(234)
77 | .date(now.minusDays(i))
78 | .liftNumber(lift1)
79 | .totalUniqueLiftRiders(1000)
80 | .build();
81 | LiftDynamicStats dynamicStatsLift2 = LiftDynamicStats.builder()
82 | .avalancheDanger(AvalancheDanger.HIGH)
83 | .averageSnowCoverageInches(432)
84 | .date(now.minusDays(i))
85 | .liftNumber(lift2)
86 | .totalUniqueLiftRiders(1500)
87 | .build();
88 | dynamicStatsList.add(dynamicStatsLift1);
89 | dynamicStatsList.add(dynamicStatsLift2);
90 | mapper.save(dynamicStatsLift1);
91 | mapper.save(dynamicStatsLift2);
92 | }
93 | assertEquals(6, dynamoDBIntegrationTestConfiguration.getItemCount());
94 |
95 | // Query based on only the PK of the GSI: we want all data for a given Lift
96 | List results = mapper.query(LiftDynamicStats.class,
97 | new DynamoDBQueryExpression()
98 | // reads from GSI can't be consistent
99 | .withConsistentRead(false)
100 | .withExpressionAttributeValues(
101 | Map.of(":val1", new AttributeValue().withS("LIFT#" + lift1)))
102 | .withIndexName("GSI_1")
103 | .withKeyConditionExpression("GSI_1_PK = :val1"));
104 |
105 | assertEquals(3, results.size());
106 | results.forEach( result -> assertNotNull(result.getDate()));
107 |
108 | // cleanup
109 | dynamicStatsList.forEach( dynamicStats -> mapper.delete(dynamicStats));
110 | }
111 | }
112 |
--------------------------------------------------------------------------------
/src/test/java/com/aws/samples/skiresort/test/LocalDBCreationExtension.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.test;
18 |
19 | import com.amazonaws.services.dynamodbv2.local.main.ServerRunner;
20 | import com.amazonaws.services.dynamodbv2.local.server.DynamoDBProxyServer;
21 | import lombok.extern.slf4j.Slf4j;
22 | import org.junit.jupiter.api.extension.AfterAllCallback;
23 | import org.junit.jupiter.api.extension.BeforeAllCallback;
24 | import org.junit.jupiter.api.extension.ExtensionContext;
25 |
26 | @Slf4j
27 | public class LocalDBCreationExtension implements BeforeAllCallback, AfterAllCallback {
28 |
29 | private DynamoDBProxyServer dynamoDBProxyServer;
30 |
31 | public LocalDBCreationExtension() {
32 | System.setProperty("sqlite4java.library.path", "native-libs");
33 | }
34 |
35 | @Override
36 | public void beforeAll(ExtensionContext context) throws Exception {
37 | dynamoDBProxyServer = ServerRunner.createServerFromCommandLineArgs(new String[]{"-inMemory", "-port", "8000"});
38 | dynamoDBProxyServer.start();
39 | }
40 |
41 | @Override
42 | public void afterAll(ExtensionContext context) {
43 | try {
44 | dynamoDBProxyServer.stop();
45 | } catch (Exception e) {
46 | throw new RuntimeException(e);
47 | }
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/src/test/java/com/aws/samples/skiresort/test/ResortTestIT.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.test;
18 |
19 | import com.amazonaws.services.dynamodbv2.AmazonDynamoDB;
20 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapper;
21 | import com.aws.samples.skiresort.domain.AvalancheDanger;
22 | import com.aws.samples.skiresort.domain.Resort;
23 | import com.aws.samples.skiresort.test.config.DynamoDBIntegrationTestConfiguration;
24 | import org.junit.jupiter.api.AfterEach;
25 | import org.junit.jupiter.api.BeforeEach;
26 | import org.junit.jupiter.api.Test;
27 | import org.junit.jupiter.api.extension.ExtendWith;
28 | import org.springframework.beans.factory.annotation.Autowired;
29 | import org.springframework.boot.test.context.SpringBootTest;
30 |
31 | import java.time.LocalDate;
32 |
33 | import static org.junit.jupiter.api.Assertions.assertEquals;
34 |
35 | /**
36 | * Example of testing basic CRUD functionality
37 | */
38 | @ExtendWith(LocalDBCreationExtension.class)
39 | @SpringBootTest
40 | public class ResortTestIT {
41 |
42 | @Autowired
43 | private AmazonDynamoDB amazonDynamoDB;
44 |
45 | @Autowired
46 | private DynamoDBIntegrationTestConfiguration dynamoDBIntegrationTestConfiguration;
47 |
48 | @BeforeEach
49 | public void initDataModel() {
50 | dynamoDBIntegrationTestConfiguration.dynamoDBLocalSetup();
51 | }
52 |
53 | @AfterEach
54 | public void verifyEmptyDatabase() {
55 | assertEquals(0, dynamoDBIntegrationTestConfiguration.getItemCount());
56 | }
57 |
58 | @Test
59 | void testSaveResort() {
60 | DynamoDBMapper mapper = new DynamoDBMapper(amazonDynamoDB);
61 |
62 | assertEquals(0, dynamoDBIntegrationTestConfiguration.getItemCount());
63 | LocalDate now = LocalDate.now();
64 | Resort resort = Resort.builder().date(now).build();
65 | mapper.save(resort);
66 | assertEquals(1, dynamoDBIntegrationTestConfiguration.getItemCount());
67 | // cleanup
68 | mapper.delete(resort);
69 | }
70 |
71 | @Test
72 | void testUpdateResort() {
73 | DynamoDBMapper mapper = new DynamoDBMapper(amazonDynamoDB);
74 |
75 | // first save a resort
76 | assertEquals(0, dynamoDBIntegrationTestConfiguration.getItemCount());
77 | LocalDate now = LocalDate.now();
78 | Resort resort = Resort.builder().date(now).totalUniqueLiftRiders(1000).build();
79 | mapper.save(resort);
80 |
81 | Resort resortFromDatabaseBeforeUpdate = mapper.load(resort);
82 | assertEquals(1000, resortFromDatabaseBeforeUpdate.getTotalUniqueLiftRiders());
83 |
84 | // then update the resort
85 | resort.setTotalUniqueLiftRiders(2000);
86 | mapper.save(resort);
87 |
88 | Resort resortFromDatabaseAfterUpdate = mapper.load(resort);
89 | assertEquals(2000, resortFromDatabaseAfterUpdate.getTotalUniqueLiftRiders());
90 |
91 | // cleanup
92 | mapper.delete(resort);
93 | }
94 | }
95 |
--------------------------------------------------------------------------------
/src/test/java/com/aws/samples/skiresort/test/RetrieveAllDataTestIT.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.test;
18 |
19 | import com.amazonaws.services.dynamodbv2.AmazonDynamoDB;
20 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapper;
21 | import com.amazonaws.services.dynamodbv2.model.AttributeValue;
22 | import com.amazonaws.services.dynamodbv2.model.QueryRequest;
23 | import com.amazonaws.services.dynamodbv2.model.QueryResult;
24 | import com.aws.samples.skiresort.domain.AvalancheDanger;
25 | import com.aws.samples.skiresort.domain.LiftDynamicStats;
26 | import com.aws.samples.skiresort.domain.LiftStaticStats;
27 | import com.aws.samples.skiresort.test.config.DynamoDBIntegrationTestConfiguration;
28 | import org.junit.jupiter.api.AfterEach;
29 | import org.junit.jupiter.api.BeforeEach;
30 | import org.junit.jupiter.api.Test;
31 | import org.junit.jupiter.api.extension.ExtendWith;
32 | import org.springframework.beans.factory.annotation.Autowired;
33 | import org.springframework.boot.test.context.SpringBootTest;
34 |
35 | import java.time.LocalDate;
36 | import java.util.ArrayList;
37 | import java.util.List;
38 | import java.util.Map;
39 |
40 | import static org.junit.jupiter.api.Assertions.assertEquals;
41 |
42 | @ExtendWith(LocalDBCreationExtension.class)
43 | @SpringBootTest
44 | public class RetrieveAllDataTestIT {
45 |
46 | @Autowired
47 | private AmazonDynamoDB amazonDynamoDB;
48 |
49 | @Autowired
50 | private DynamoDBIntegrationTestConfiguration dynamoDBIntegrationTestConfiguration;
51 |
52 | @BeforeEach
53 | public void initDataModel() {
54 | dynamoDBIntegrationTestConfiguration.dynamoDBLocalSetup();
55 | }
56 |
57 | @AfterEach
58 | public void verifyEmptyDatabase() {
59 | assertEquals(0, dynamoDBIntegrationTestConfiguration.getItemCount());
60 | }
61 |
62 | @Test
63 | void testRetrieveStaticAndDynamicLiftData() {
64 | DynamoDBMapper mapper = new DynamoDBMapper(amazonDynamoDB);
65 |
66 | assertEquals(0, dynamoDBIntegrationTestConfiguration.getItemCount());
67 | int liftNumber = 6789;
68 |
69 | // create static test data
70 | LiftStaticStats staticStats = LiftStaticStats.builder()
71 | .experiencedRidersOnly(true)
72 | .liftNumber(liftNumber)
73 | .liftTime("07:00")
74 | .verticalFeet(3000)
75 | .build();
76 | mapper.save(staticStats);
77 |
78 | // create dynamic test data
79 | LocalDate now = LocalDate.now();
80 | List dynamicStatsList = new ArrayList();
81 | for(int i = 0; i < 3; i++) {
82 | LiftDynamicStats dynamicStats = LiftDynamicStats.builder()
83 | .avalancheDanger(AvalancheDanger.HIGH)
84 | .averageSnowCoverageInches(234)
85 | .date(now.minusDays(i))
86 | .liftNumber(liftNumber)
87 | .totalUniqueLiftRiders(1000)
88 | .build();
89 | dynamicStatsList.add(dynamicStats);
90 | mapper.save(dynamicStats);
91 | }
92 | assertEquals(4, dynamoDBIntegrationTestConfiguration.getItemCount());
93 |
94 | // Cannot use DynamoDBMapper because of the heterogenous nature of this query
95 | // result can contain both LiftDynamicStats & LiftStaticStats
96 | AttributeValue liftPK = new AttributeValue("LIFT#" + liftNumber);
97 | QueryRequest queryRequest = new QueryRequest()
98 | .withTableName("SkiLifts")
99 | .withKeyConditionExpression("PK = :v_pk")
100 | .withExpressionAttributeValues(Map.of(":v_pk", liftPK));
101 | QueryResult queryResult = amazonDynamoDB.query(queryRequest);
102 |
103 | assertEquals(4, queryResult.getCount());
104 |
105 | // cleanup
106 | mapper.delete(staticStats);
107 | dynamicStatsList.forEach( dynamicStats -> mapper.delete(dynamicStats));
108 | }
109 | }
110 |
--------------------------------------------------------------------------------
/src/test/java/com/aws/samples/skiresort/test/config/DynamoDBIntegrationTestConfiguration.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 | *
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 | * this software and associated documentation files (the "Software"), to deal in
6 | * the Software without restriction, including without limitation the rights to
7 | * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8 | * the Software, and to permit persons to whom the Software is furnished to do so.
9 | *
10 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
12 | * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
13 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
14 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16 | */
17 | package com.aws.samples.skiresort.test.config;
18 |
19 | import com.amazonaws.services.dynamodbv2.AmazonDynamoDB;
20 | import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapper;
21 | import com.amazonaws.services.dynamodbv2.model.*;
22 | import com.aws.samples.skiresort.domain.Resort;
23 | import org.springframework.beans.factory.annotation.Autowired;
24 | import org.springframework.context.annotation.Configuration;
25 |
26 | import java.util.List;
27 |
28 | @Configuration
29 | public class DynamoDBIntegrationTestConfiguration {
30 |
31 | @Autowired
32 | private AmazonDynamoDB amazonDynamoDB;
33 |
34 | private DynamoDBMapper dynamoDBMapper;
35 |
36 | public void dynamoDBLocalSetup() {
37 | try {
38 | ListTablesResult tablesResult = amazonDynamoDB.listTables();
39 | if (!tablesResult.getTableNames().contains("SkiLifts")) {
40 | dynamoDBMapper = new DynamoDBMapper(amazonDynamoDB);
41 | // Single table design: any of the domain class will contain the data needed to create the table
42 | CreateTableRequest tableRequest = dynamoDBMapper.generateCreateTableRequest(Resort.class);
43 | tableRequest.setProvisionedThroughput(new ProvisionedThroughput(5L, 5L));
44 |
45 | tableRequest.getGlobalSecondaryIndexes().forEach(gsi -> {
46 | gsi.setProvisionedThroughput(new ProvisionedThroughput(5L, 5L));
47 | // "Date" is a required attribute for the access pattern using this Global Secondary Index
48 | // ProjectionType.KEYS_ONLY would miss that attribute
49 | // ProjectionType.ALL would work but less efficient than ProjectionType.INCLUDE
50 | gsi.getProjection().setNonKeyAttributes(List.of("Date"));
51 | gsi.getProjection().setProjectionType(ProjectionType.INCLUDE);
52 | });
53 | amazonDynamoDB.createTable(tableRequest);
54 | }
55 | } catch (Exception e) {
56 | throw new RuntimeException(e);
57 | }
58 | }
59 |
60 | public long getItemCount() {
61 | return amazonDynamoDB.describeTable("SkiLifts").getTable().getItemCount();
62 | }
63 | }
64 |
--------------------------------------------------------------------------------