我的包结构看起来像:
- 源/主/java
- 源/主/资源
- 源/测试/java
- 源/测试/资源
- src/main/webapp/css
- src/main/webapp/images
- src/main/js
- src/main/WEB-INF
我的图像存储在 src/main/webapp/images 下。
现在我想动态链接到图片,例如:
Image picture = new Image("picture",
new ContextRelativeResource("/images/races/"
+ dynamicPicture));
问题是,我的应用程序找不到 /images/races/$dynamicPicture。如何设置图像文件夹的正确路径?使用的应用服务器是 Jetty。