Reputation: 869
I'm about to integrate Cloudify in my webapp to handle media storage.
I was wondering if a java library already exist that abstracts data access/storage and can handle different storage providers like S3, Cloudify etc.
Upvotes: 0
Views: 122
Reputation: 3066
jclouds (https://jclouds.apache.org/) supports an abstraction for data access, called BlobStorage. Have a look at the list of providers here:
http://jclouds.apache.org/guides/providers/#blobstore-providers
Upvotes: 1