在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:aws/aws-sdk-java开源软件地址:https://github.com/aws/aws-sdk-java开源编程语言:开源软件介绍:AWS SDK for JavaThe AWS SDK for Java enables Java developers to easily work with Amazon Web Services and build scalable solutions with Amazon S3, Amazon DynamoDB, Amazon Glacier, and more. You can get started in minutes using Maven or by downloading a single zip file. Note: A version 2.x of the SDK is available, see the AWS SDK for Java 2.x section for more information. Release NotesChanges to the SDK beginning with version 1.12.1 (June 2021) are tracked in CHANGELOG.md. Changes in the retired 1.11.x series of the SDK, beginning with version 1.11.82, are listed in the CHANGELOG-1.11.x.md file. Release notes for versions prior to 1.11.82 can still be found on the AWS Release Notes Website. Getting StartedSign up for AWSBefore you begin, you need an AWS account. Please see the Sign Up for AWS section of the developer guide for information about how to create an AWS account and retrieve your AWS credentials. Minimum requirementsTo run the SDK you will need Java 1.7+. For more information about the requirements and optimum settings for the SDK, please see the Installing a Java Development Environment section of the developer guide. Install the SDKThe recommended way to use the AWS SDK for Java in your project is to consume it from Maven. Import the aws-java-sdk-bom and specify the SDK Maven modules that your project needs in the dependencies. Importing the BOM<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bom</artifactId>
<version>1.12.245</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement> Using the SDK Maven modules<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-ec2</artifactId>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-dynamodb</artifactId>
</dependency>
</dependencies> See the Set up the AWS SDK for Java section of the developer guide for more information about installing the SDK through other means. Features
Building From SourceOnce you check out the code from GitHub, you can build it using Maven. To disable the GPG-signing in the build, use: mvn clean install -Dgpg.skip=true Getting HelpGitHub issues is the preferred channel to interact with our team. Also check these community resources for getting help:
Maintenance and Support for SDK Major VersionsFor information about maintenance and support for SDK major versions and their underlying dependencies, see the following in the AWS SDKs and Tools Shared Configuration and Credentials Reference Guide: Supported Minor Versions
AWS SDK for Java 2.xA version 2.x of the SDK is generally available. It is a major rewrite of the 1.x code base, built on top of Java 8+ and adds several frequently requested features. These include support for non-blocking I/O, improved start-up performance, automatic iteration over paginated responses and the ability to plug in a different HTTP implementation at run time. For more information see the AWS SDK for Java 2.x Developer Guide or check the project repository in https://github.com/aws/aws-sdk-java-v2. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论