Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 995 Bytes

README.md

File metadata and controls

38 lines (30 loc) · 995 Bytes

App

This project contains a maven application with AWS Java SDK 2.x dependencies.

Prerequisites

  • Java 1.8+
  • Apache Maven
  • GraalVM Native Image (optional)

Development

Below is the structure of the generated project.

├── src
│   ├── main
│   │   ├── java
│   │   │   └── package
│   │   │       ├── App.java
│   │   │       ├── DependencyFactory.java
│   │   │       └── Handler.java
│   │   └── resources
│   │       └── simplelogger.properties
│   └── test
│       └── java
│           └── package
│               └── HandlerTest.java
  • App.java: main entry of the application
  • DependencyFactory.java: creates the SDK client
  • Handler.java: you can invoke the api calls using the SDK client here.

Building the project

mvn clean package