Package leodagdag.play2morphia

Examples of leodagdag.play2morphia.Blob


            public void run() {
                File picture = new File("public/images/test/test.jpg");
                Post post = new Post();
                post.title = "fake post";
                String mimetype = MimeTypes.forFileName(picture.getName()).get();
                Blob blob = new Blob(picture, mimetype);
                post.picture = blob;
                post.insert();
                ObjectId id = post.id;

                post = Post.find().byId(id);
View Full Code Here

TOP

Related Classes of leodagdag.play2morphia.Blob

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.