您好我正在尝试为我的gwt应用实现ImageBundle。
@SuppressWarnings("deprecation")
public interface MenuImageBundle extends ImageBundle {
@Resource("icons/001_15.png")
AbstractImagePrototype fileNewIcon();
}
但是当gwt应用程序调用fileNewIcon()时出现此错误:
Unable to find image resource 'icons/001_15.png'
虽然图标图像位于WAR文件夹的icons文件夹中。
任何人都知道如何解决此错误?
感谢。