Java and mixed language debug limitations

 

Hot Method Replace

  • Changes to source that affect the shape of the class are not supported. This means that changes to method bodies will be hot replaced, while the following are examples of changes that will not be hot replaced:

    • changes to class structure, such as the removal/addition of methods

    • modification of class variables

    • changes to inner classes

  • Changes to the code in the bottom stack frame (the main(...) method) cannot be hot replaced.

  • JSP Debugging does not support hot method replace of Java code.

 

Related concepts

Hot Method Replace for debugging Java applications
Hot Method Replace for debugging applications on WebSphere Application Servers

Related reference
WebSphere Application Server debug limitations