User interface for working with SimpleDB. The missing console plug-in in the AWS tool set.
- AWS account set up and activated.
- Java JRE 1.8+
- If building your own instance:
- Maven (3.3+)
- JDK 1.8+
The Webapp uses the AWS SDK for Java, so the normal set-up for the AWS credentials will work. For example:
Create a credentials file as: %USERPROFILE%\.aws\credentials
[default]
aws_access_key_id = xxxxxxxxxx
aws_secret_access_key = yyyyyyyyyyyy
Create the credentials file as: ~/.aws/credentials
in the home directory of the user running the Web app.
Create a valid Instance Profile for your EC2 instances.
To build the project, simple clone the product onto your local drive. Then run the Maven target:
git clone
cd simpledb-crud
mvn spring-boot:run
Access the Webapp via: http://localhost:8080/home/index
To build the project as a runnable jar, simple clone the product onto your local drive. Then run the Maven targets:
git clone
cd simpledb-crud
mvn install package spring-boot:repackage
java -jar target/simpledb-crud-0.0.1-SNAPSHOT.jar
Access the Webapp via: http://localhost:8080/home/index
Yes yes yes. Port 8080 is so popular that—chances are you already have something using 8080. Since the tool
is based on Spring Boot, just add this flag to set the port: -Dserver.port=8090
For example:
mvn spring-boot:run -Dserver.port=8090
or
java -Dserver.port=8090 -jar target/simpledb-crud-0.0.1-SNAPSHOT.jar