我需要更改系统属性
gwt.imageResource.maxBundleSize
到 1000。我该怎么做?
正如我在这里看到的那样,该财产存在; https://code.google.com/p/google-web-toolkit/source/browse/releases/2.5/user/src/com/google/gwt/resources/rg/ImageBundleBuilder.java#471
但是我不知道如何在 GWT.XML 中设置它:
<set-property name="gwt.imageResource.maxBundleSize" value="1000" />
结果是;
[错误] 找不到属性“gwt.imageResource.maxBundleSize”
所以我尝试创建属性;
<define-property name="gwt.imageResource.maxBundleSize" values="1000" />
但这让我明白了;
[错误] 无效的属性值“1000”
事实上,任何数值都会导致此错误。它唯一接受的是以字母开头的字符串……但这显然没有用,因为谷歌的代码是;
private static final int IMAGE_MAX_SIZE = Integer.getInteger(
"gwt.imageResource.maxBundleSize", 256);
所以我很难过我应该如何设置这个属性。