I\'ve created the local instance of DynamoDb by next steps: in Visual Studio I installed AWS explorer and create a new local instance on localhost:82. I can successfully wor
java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDb
has resolved a similar problem.
I had the exact same problem. Basically you need to specify -sharedDb when starting up dynamo
java -jar DynamoDBLocal.jar -sharedDb
I hope that solves your problem.