Debugging JNLP started application

前端 未结 3 914
北荒
北荒 2020-12-15 11:07

I created a Java desktop-application (using Swing) and am now trying to make it work by starting it from the net using JNLP. The application works fine when I start it from

相关标签:
3条回答
  • 2020-12-15 11:31

    This answer is an alternative to npe answer to enable the remote debug (Windows).

    • Go to Control Panel;
    • Click on Java, to open Java Control Panel;
    • Inside of Java Control Panel, go to Java tab, and click "View";
    • This will open a window with installed java versions. On runtime parameters put "-Xdebug -Xrunjdwp:transport=dt_socket,address=8123,server=y,suspend=n" (if you want to debug when application is starting, change to "suspend" to "y", that will make the application stop until an editor connect remotely);

    Afer that, configure you editor to debug remotely to the configured port (localhost:8123 in this case).

    0 讨论(0)
  • 2020-12-15 11:44

    There are times when even the console doesn't show anything, for example when there is a problem with the TLS/SSL handshake (i.e. a close_notify or handshake_failure). In these cases you need to do the following:

    1. Enable the Java logs and tracing in the Java Control Panel > Advanced.

    2. Enable parameters for debugging Java & launching the JNLP, there are two ways you can do it:

      2.a. Download the JNLP file and execute it from command line (the SET command is not required in this particular case).

      set JAVA_TOOL_OPTIONS=-Djavax.net.debug=all
      javaws -wait jnlp.jnlp
      

      2.b. Add arguments (i.e. -Djavax.net.debug=all) for the JVM in the Java Control Panel > Java > View (this is not required in this particular), and launch the JNLP file from browser:

    3. The logs and traces are located in the log directory from the Java Deployment Home from where I paste these locations:

      a. Windows XP: %HOME%\Application Data\Sun\Java\Deployment

      b. Windows 7/Vista: %APPDATA%\..\LocalLow\Sun\Java\Deployment

      c. Linux/Solaris: %HOME%/.java/deployment

    0 讨论(0)
  • 2020-12-15 11:49

    Solution #1 - Enable Java Console, and look for exceptions.

    You can do it via Java Control Panel. Switch to Advanced tab, and in the Java Console make sure Show console is selected.

    Then, run your application and monitor the console for exceptions. Fix the exception.

    Solution #2 - Debug your running application (properly).

    Start the Web Start app like this (for Java 1.6 and newer):

    javaws -verbose -J-Xdebug -J-Xnoagent -J-Xrunjdwp:transport=dt_socket,server=n,suspend=y,address=8123 http://myserver.com/path/to/myapp.jnlp
    

    If using earlier java versions (1.4.2, 1.5) set the environment variable, like this:

    set JAVAWS_VM_ARGS="-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=n,suspend=y,address=8123"
    

    and run the app via:

    javaws http://myserver.com/path/to/myapp.jnlp
    

    When the app runs:

    1. Attach a debugger (Eclipse will do - use Run => Debug Configurations => Remote Java Application, and in Connection Properties panel enter the port passed in the parameters to javaws (in this case: 8123).
    2. Set a breakpoint inside your windowClosing method.
    3. Try to close your application - Eclipse should break the execution on your breakpoint
    4. Step into the GameLoop.INSTANCE.stopLoop() method to see where/when it hangs.

    Don't expect to see a solutions in the console, just step through the code with a debugger - if the application hangs, it will show you where.

    0 讨论(0)
提交回复
热议问题