Created
November 3, 2010 10:22
-
-
Save steren/660937 to your computer and use it in GitHub Desktop.
Upload and store image with Play! Framework
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Application extends Controller { | |
public static void index() { | |
render(); | |
} | |
public static void uploadPicture(Picture picture) { | |
picture.save(); | |
index(); | |
} | |
public static void getPicture(long id) { | |
Picture picture = Picture.findById(id); | |
response.setContentTypeIfNotSet(picture.image.type()); | |
renderBinary(picture.image.get()); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
#{list items:models.Picture.findAll(), as:'picture'} | |
<li>${picture.id} <img src="@{Application.getPicture(picture.id)}" /></li> | |
#{/list} | |
</ul> | |
#{form @Application.uploadPicture(), enctype:'multipart/form-data'} | |
<input type="file" name="picture.image" /> | |
<input type="submit" name="submit" value="Save" /> | |
#{/form} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Entity | |
public class Picture extends Model { | |
public Blob image; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
got it, what if i want to save the image to a folder and path to the database
please guide me , am using play 2.6; and how would i retrieve the image then? thanks in advance