Glassfish3 + Webstart + JNLP无法启动

时间:2016-02-27 03:35:17

标签: java eclipse glassfish jnlp

我在使用Glassfish 3.3.1运行jnlp(webstart)时遇到问题。控制台说:

java.io.FileNotFoundException: http://localhost:8080/myapp/server

jnlp代码库设置如下:

<?xml version="1.0" encoding="UTF-8"?>
<jnlp codebase="http://localhost:8080/myapp">
<information>
    <title>My App </title>
    <vendor>IT Solutions</vendor>
    <icon href="address.gif"/>
    <description>My App</description>
</information>
<security>
    <all-permissions/>
</security>
<resources>
    <j2se version="1.6+"/>
    <jar href="proweb.jar"/>
    <jar href="commons-logging-1.0.jar"/>
    <jar href="commons-discovery.jar"/> 
    <jar href="axis.jar"/>
    <jar href="jaxrpc-api-osgi.jar"/>
    <jar href="javax.servlet.jar"/>
    <jar href="swingx-all-1.6.3.jar"/>
    <jar href="my_app.jar"/>
</resources>
<application-desc
    name="MatrixApplet"
    main-class="com.myapp.client.MyApplet"
    width="800"
    height="600">
    <argument>http://localhost:8080</argument>
    <argument>/myapp/server</argument>
    <argument>http://localhost:8080/myreport/jsp/Launch.jsp</argument>
</application-desc>
</jnlp>

下载jar并抛出异常。我无法使用调试器,因为启动失败并在控制台中出现上述错误消息。

此过去一直运行良好。我无法确定发生了什么变化。我使用ant来构建各种工件,build.xml中没有任何更改(如果需要,可以发布)。另外,我看到一个很大的砖色X(不是经常谈到的简单的红色图标)bin下的一个编译类文件夹。我无法在Eclipse网站上找到该图标的含义。

我还尝试在命令行上运行MyApplet,但得到了这个堆栈跟踪:

Error: A JNI error has occurred, please check your installation and try again
Exception in thread "main" java.lang.NoClassDefFoundError:    javax/jnlp/UnavailableServiceException
    at java.lang.Class.getDeclaredMethods0(Native Method)
    at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
    at java.lang.Class.privateGetMethodRecursive(Class.java:3048)
    at java.lang.Class.getMethod0(Class.java:3018)
    at java.lang.Class.getMethod(Class.java:1784)
    at sun.launcher.LauncherHelper.validateMainClass(LauncherHelper.java:544)
    at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:526)
Caused by: java.lang.ClassNotFoundException: javax.jnlp.UnavailableServiceException
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)

还有一件事。在部署EAR文件之前,我删除了glassfish3 / glassfish / domains / domain1 / applications / dir下的所有内容。那不好吗?

这里有人建议使用独立的glassfish实例。也试过了。

最后一件事:在浏览器中,以下2个URL给出了http-404(未找到)

http://localhost:8080/myapp

http://localhost:8080/myapp/server

然而,如果我给 http://localhost:8080/myapp/proweb.jar

下载了jar。

有任何帮助吗? 谢谢你

1 个答案:

答案 0 :(得分:0)

jar签名存在问题。使用jws,控制台中的错误消息完全是误导性的。双击jnlp文件(Windows 7)时,显示真正的错误。