我正在开发一个遇到问题的小型 Web 应用程序。在这里,我有一个使用迭代器在 jsp 页面中显示的内容列表。对于每个内容,可以有一些与之关联的图像。我想将这些图像与内容一起显示。如何做到这一点。
这是我的内容迭代器。
<s:iterator value="contentList">
<s:property value="id"/>
<s:property value="topic"/>
现在在这个迭代器标记中,我想使用第一个迭代器的“id”属性动态生成第二个迭代器。我有一个通过“id”属性映射到每个内容的图像数据库表。我想获取与该特定内容关联的图像列表,然后将它们显示在 jsp 页面中。图像可以是多个。这怎么可能实现。请帮忙。
图像存储在文件系统中,路径存储在数据库中。为了显示单个图像,我正在做的是,我从动作类中的数据库中获取图像路径,然后通过 fileInputStream 将图像传递给 jsp 页面。当我尝试显示多个图像时出现问题。
用于在jsp中显示图像的代码
<img src="contentimage.action?contentID=<s:property value="id"/>"/>
<s:property value="id"/>
是内容迭代器可用的值。
在行动课上
Image ImageObject=cd.getImageObject(contentID);
File file = new File(ImageObject.getFilePath()+"/"+ImageObject.getFileName());
FileInputStream fileInputStream = new FileInputStream(file);
这Image
是一个具有图像属性的 Bean 类,例如文件系统中的 FilePath、图像文件名等。现在,对于给定contentID
的 ,数据库中可以有多个图像,所有图像都具有不同的文件名和文件路径。我可以将它们放在Image
类型列表中。现在如何在 jsp 页面中迭代它们并显示这些路径的图像。希望,这次我把我的问题说清楚了。
编辑
映射到 Hibernate 的我的内容类。
private int id;
private String topic;
//getters and Setters
我的 ContentImage 类映射到 Hibernate。
private int contentId; // this is the id of the Content class
private String fileName; //image file name
private String filePath; // image file path, actual file is stored in file system
private String imageByte; //Base64 string of the image file
//getters and setters
现在,在加载视图 jsp 之前的动作类中,我得到了内容列表。
contentList=//got the list here;
现在使用迭代器在 jsp 中显示它。
<s:iterator value="contentList">
<s:property value="id"/>
<s:property value="topic"/>
Now here i want a second iterator of my ContentImage class having a list of images corresponding to the id value of the contentList iterator.
//This is where i am having the problem. I can display single image with this:
<img src="contentimage.action?contentID=<s:property value="id"/>"/> //But i need to display all the images associated with this id.
So i need an iterator created dynamically here with the id attribute and then display the images. Like:
<s:iterator value="contentImageList">
<img src="displayimage.action?filepath=<s:property value="filePath"/>"/>
</s:iterator>
</s:iterator>
我无法创建第二个迭代器。请帮助我。