我正在尝试dynamodb在本地安装docker。
我从这里编写了以下代码。
docker run -p 8000:8000 amazon/dynamodb-local -jar DynamoDBLocal.jar -sharedD
Run Code Online (Sandbox Code Playgroud)
然后我就可以到达localhost:8000/shell
在我的客户端java中,我设置了端点
AmazonDynamoDB client = AmazonDynamoDBClientBuilder
.standard()
.withCredentials(new EnvironmentVariableCredentialsProvider())
.withEndpointConfiguration(
new AwsClientBuilder.EndpointConfiguration("http://localhost:8000/", "eu-central-1")
).build();
Run Code Online (Sandbox Code Playgroud)
但是当我运行它时,记录以下错误。
谁能帮我?在此处输入代码
java amazon-web-services amazon-dynamodb docker amazon-dynamodb-local