我已经成功实现了 BalusC 建议的解决方案,用于在数据表中呈现动态图像(代码在此处进一步发布)。我面临的问题是这样的:
问题
我在数据表中使用分页,当我移动到我从未访问过的页面时,图像渲染得很好。但是当我回到之前访问过的页面时,即使返回了该图像的 StreamedContent,图像也不会显示。
代码
// ImageBean - SessionScoped
// Get image for compound
public StreamedContent scaledImageById() {
FacesContext context = FacesContext.getCurrentInstance();
if (context.getCurrentPhaseId() == PhaseId.RENDER_RESPONSE) {
return new DefaultStreamedContent();
} else {
String idStr = context.getExternalContext().
getRequestParameterMap().get("id");
StreamedContent image = scaledCompoundImageMap.
get(Integer.valueOf(idStr));
return image;
}
}
// Controller - ViewScoped
<p:dataTable id="cTable" value="#{controller.compoundList}" var="compound">
<p:column headerText="Structure" style="text-align:center">
<p:graphicImage id="scaledImage"
value="#{imageBean.scaledImageById()}"
cache="false">
<f:param name="id" value="#{compound.id}" />
</p:graphicImage>
</p:column>
...
因此,当我在分页器中访问新页面时,图像显示正常。但是当我回到一个已经访问过的页面时,图像没有显示(即使 scaledImageById 被调用了两次并且 StreamedContent 被很好地返回)。
如果您需要任何其他代码,请告诉我,我们将不胜感激。谢谢。
阿卜杜勒