alanwilliamson
Last October, I released an updated version of the simple Java class for accessing all the methods of Amazon's SimpleDB web service. This class also forms the basis of the Amazon methods within OpenBlueDragon.
However, since then Amazon has made a few updates to this service including killing off some methods that will no longer be supported in the upcoming months. I took the opportunity and completely rewrote the class to better handle the new API and also give the Java developer a much cleaner access model.
Key Features:
- No external dependencies
- Single POJO
- Full API support; CreateDomain, DeleteDomain, DomainMetaData, select, GetAttributes, PutAttributes, BatchPutAttributes, DeleteAttributes
- NextToken support
- Signature2 authentication
- Error Reporting
- Last Request ID and BoxUsage reporting
This is how easy it is to use:
SimpleDB sDb = new SimpleDB( amzID, amzKey ); List<Map> results = sDb.select( "select * from mydomain" );
What more can I say, but it works! If you need access to SimpleDB and you don't want all the fluff and nonsense associated with some of the more complicated libraries, then this class may work for you. This class has been integrated into the core OpenBlueDragon.
September 2009 - updated here
Article Details
We're Hiring
We are looking for passionate Java, CFML and Web developers who are wanting to solve some interesting problems and work with cutting edge technologies both in Scotland and the USA. Goto Jobs@AW2.0 for more details.
Related Articles
Article Archives
