我的包结构如下:
我的图片存储在src / main / webapp / images。
现在我想动态链接到图片,例如:
Image picture = new Image("picture",
new ContextRelativeResource("/images/races/"
+ dynamicPicture));
问题是,我的应用程序无法找到/ images / races / $ dynamicPicture。 如何设置图像文件夹的正确路径?使用的Appliation Server是Jetty。
答案 0 :(得分:1)
确实,您的代码应该可行。您是否正在使用Maven来管理项目并启动Jetty?
答案 1 :(得分:0)
它可以使用(删除前导斜杠)
Image picture = new Image("picture",
new ContextRelativeResource("images/races/"
+ dynamicPicture));