我正在 Java Play 中编写图像上传器!以风格
https://gist.github.com/1256286#file-picture-java-L3
这很棒。图像是在对象中使用此函数呈现的Controller
(这里Picture
是一个Model
包含有关图像文件的元数据的实现:
public static void show(Long id) {
Logger.info("loading id=%s", id);
Picture picture = Picture.findByKey(id);
response.setContentTypeIfNotSet(picture.contentType);
renderBinary(new ByteArrayInputStream(picture.file), picture.file.length);
}
我想添加一个url
成员,Picture
其中包含给定图片的此函数的绝对 URL。无论 Java Play 在哪里,我如何才能以一种有效的方式填充此成员!应用程序托管?