Questions tagged [jpda]

Java Platform Debugger Architecture

The Java Platform Debugger Architecture is a collection of APIs to debug Java code.

63 questions
0
votes
1 answer

How to prevent dead code being optimized by JVM?

public class A { public String getText() { Marker.start(); ... ... Marker.end(); } } public class Marker { public static void start() { long now = System.currentTimeMillis; } …
janetsmith
  • 8,562
  • 11
  • 58
  • 76
0
votes
1 answer

Connecting to a weblogic cluster via JPDA

I have a weblogic cluster set up across two machines in a staging environment. I'd like to set up JPDA on at least one of the weblogic instances so I can debug remotely. Generally I use wlst.sh and jython scripts to startup the cluster…
tterrace
  • 1,955
  • 1
  • 16
  • 19
-5
votes
1 answer

What are the alternatives to Java Debug Interface

I was working with JDI api in JPDA. But due to its some limitation I am stuck at some point. What are the alternatives to JDI so that I can write custom debuggers for Java programs ? Preferably Java alternatives.
rainyday
  • 353
  • 3
  • 17
1 2 3 4
5