在我的 GWT 应用程序中使用字符串资源概念,我不想向 @Source("some-external-path-not-class-path") 提供一些外部路径或 war 文件夹路径,例如 - @Source("example. com/sometextfile.txt") 或 @Source("../war/sometextfile.txt")。
使用以下代码 -
public interface Resource extends ClientBundle
{
public static Resource INSTANCE = GWT.create(Resource.class);
@Source("../../war/sometextfile.txt")
TextResource textResource();
}
我不想这样做,以便我可以直接在服务器上外部部署我的资源文件,如果仅在文本中有一些更改,我不需要部署我的整个项目。