Possible Duplicate:
Store Blob in Heroku (or similar cloud services)

I realize that Heroku has a read-only file system, and have looked at SO questions about attachment_fu and other similar Ruby gems for handling file uploads in a transitory way so that they never really hit disk (other than temp) until they get written to Amazon S3. However, I'd like to use the Play Framework (Java) for my upcoming project, and need to support uploading pictures to a gallery.

Obviously I'll need to use a writable backing store like S3 or a database blob field: I'm not married to either one as long as it works for a low volume web site (several hundred requests per month). Has anyone done this with Play on Heroku? I'm new to Play Framework, and new to Heroku, so even really obvious answers would help!

link|improve this question

I posted my answer in both places. Not sure what the typical etiquette is for dupes on SO. – James Ward Sep 7 '11 at 13:10
feedback

closed as exact duplicate by Chris Johnsen, 0A0D, Stefan Gehrig, Frédéric Hamidi, Jay Riggs Sep 7 '11 at 17:07

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 3 down vote accepted

I put an example of how to do this with Amazon S3 on github:
https://github.com/jamesward/plays3upload

Basically you just need to send the file to S3 and save the key in the entity:

AWSCredentials awsCredentials = new BasicAWSCredentials(System.getenv("AWS_ACCESS_KEY"), System.getenv("AWS_SECRET_KEY"));
AmazonS3 s3Client = new AmazonS3Client(awsCredentials);
s3Client.createBucket(BUCKET_NAME);
String s3Key = UUID.randomUUID().toString();
s3Client.putObject(BUCKET_NAME, s3Key, attachment);
Document doc = new Document(comment, s3Key, attachment.getName());
doc.save();
listUploads();
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.