我的 Java Web Start 应用程序有问题。我有一个在 Wildfly 9 容器中运行的 JavaEE 应用程序。我将一个属性文件传递给 Web Start 应用程序,其中包含一个指向 csv 文件的 URL 和一个指向模板文件的 URL。
当我第一次运行应用程序时,应用程序下载属性文件,从属性文件条目加载 URL,下载 csv 文件和模板文件,并与文件进行邮件合并。
当我第二次、第三次运行 Web Start 应用程序时,它总是从第一次运行时下载属性文件。每次用户启动 Web Start 应用程序时,甚至属性文件都会被覆盖。
我发现当我通过 Eclipse 的“完全发布”将我的应用程序部署到 Wildfly 时,Web Start 应用程序工作正常,但是当我通过“项目 --> 导出 --> WAR 文件”部署我的应用程序并将 .我的 Wildfly 安装中部署文件夹中的 war 文件,我确实得到了上面解释的行为。
一些附加信息:通过“导出 WAR 文件”控制台输出部署,第一次运行:
Java Web Start 11.65.2.17
JRE-Version verwenden 1.8.0_65-b17 Java HotSpot(TM) Client VM
Benutzer-Home-Verzeichnis = C:\Users\arthurw
c: Konsolenfenster löschen
f: Objekte in Finalisierungs-Queue finalisieren
g: Garbage Collect
h: Diese Hilfemeldung anzeigen
m: Speicherauslastung drucken
o: Logging auslösen
p: Proxykonfiguration neu laden
q: Konsole ausblenden
r: Policy-Konfiguration neu laden
s: System- und Deployment-Eigenschaften ausgeben
t: Threadliste ausgeben
v: Threadstack ausgeben
0-5: Traceebene auf <n> setzen
CacheEntry[http://localhost:8080/browser/resources/webstart/715.jnlp]: updateAvailable=true,lastModified=Tue Nov 24 12:23:01 CET 2015,length=831
CacheEntry[http://localhost:8080/browser/resources/webstart/Textverwaltungsschnittstelle.jar]: updateAvailable=true,lastModified=Tue Nov 24 12:21:14 CET 2015,length=2728463
Missing Permissions manifest attribute in main jar: http://localhost:8080/browser/resources/webstart/Textverwaltungsschnittstelle.jar
CacheEntry[http://localhost:8080/browser/resources/webstart/715.properties]: updateAvailable=true,lastModified=Tue Nov 24 12:23:34 CET 2015,length=298
Content-Type = application/octet-stream
Content-Disposition = null
Content-Length = 298
fileName = 715.properties
File downloaded
Content-Type = application/octet-stream
Content-Disposition = null
Content-Length = 2823
fileName = 715_2015_11_24_12_26_16.csv
File downloaded
Content-Type = application/octet-stream
Content-Disposition = null
Content-Length = 37405
fileName = 715_2015_11_24_12_26_16.DOCX
File downloaded
The Library been loaded, and an activeX component been created
第二次运行:
Java Web Start 11.65.2.17
JRE-Version verwenden 1.8.0_65-b17 Java HotSpot(TM) Client VM
Benutzer-Home-Verzeichnis = C:\Users\arthurw
----------------------------------------------------
c: Konsolenfenster löschen
f: Objekte in Finalisierungs-Queue finalisieren
g: Garbage Collect
h: Diese Hilfemeldung anzeigen
m: Speicherauslastung drucken
o: Logging auslösen
p: Proxykonfiguration neu laden
q: Konsole ausblenden
r: Policy-Konfiguration neu laden
s: System- und Deployment-Eigenschaften ausgeben
t: Threadliste ausgeben
v: Threadstack ausgeben
0-5: Traceebene auf <n> setzen
----------------------------------------------------
Missing Permissions manifest attribute in main jar: http://localhost:8080/browser/resources/webstart/Textverwaltungsschnittstelle.jar
Content-Type = application/octet-stream
Content-Disposition = null
Content-Length = 298
fileName = 715.properties
File downloaded
Content-Type = application/octet-stream
Content-Disposition = null
Content-Length = 2823
fileName = 715_2015_11_24_12_26_16.csv
File downloaded
Content-Type = application/octet-stream
Content-Disposition = null
Content-Length = 37405
fileName = 715_2015_11_24_12_26_16.DOCX
File downloaded
The Library been loaded, and an activeX component been created
这是 JNLP 文件
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://localhost:8080/browser/resources/webstart" href="715.jnlp">
<information>
<title>Textverwaltung Schnittstelle</title>
<description>automatisierte Serienbriefbefüllung mithilfe Ihrer Textverwaltung</description>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.6+" />
<jar href="Textverwaltungsschnittstelle.jar" main="true"/>
</resources>
<update check="always" policy="always"/>
<application-desc main-class="mm.Textverwaltungsschnittstelle">
<argument>http://localhost:8080/browser/resources/webstart/715.properties</argument>
</application-desc>
</jnlp>
我需要通过“导出 WAR 文件”使其与部署一起工作。有人知道有什么问题吗?
- - - - - - - - - - - - - - - 编辑 - - - - - - - - - - ------------------
这是属性文件的加载过程,这里一切正常,我可以手动打开属性文件,内容正确。
Properties clientprops=new Properties();
clientprops.put("modus", modus);
clientprops.put("templatepath", templateUrl);
clientprops.put("csvpath", csvUrl);
String propertypath=jnlpdir + user + ".properties";
File fp = new File(propertypath);
OutputStream out;
try {
out = new FileOutputStream(fp);
clientprops.store(out, "Benötigte Attribute für die Aktivierung der Textverwaltungsschnittstelle");
} catch (IOException e2) {
e2.printStackTrace();
}
这就是我下载属性文件的方式
File proppath = new File(tmpdir + "prop.properties");
URL url;
try {
url = new URL(args[0]);
FileUtils.copyURLToFile(url, proppath);
} catch (IOException e) {
showFehler("Properties konnten nicht kopiert werden");
}
copyURLToFile(url, proppath) 是来自 appache FileUtils 的方法。下载的属性文件包含无效内容。每次都是第一次运行的内容。
真诚的亚瑟