When debugging a neo-application, its speed for some unknown reason drops after a restart. I will explain. There is some backend on the jboss server. When I put on debug, then the application works normally, breakpoint is reached quickly. After the stop and debugger start, the first breakpoint is now waiting a lot longer. Maybe this is a specific debugger, not an application?

  • of course it can. When using the debugger, jvm disables some of the optimizations that occur in runtime. Plus, it is necessary for the debugger to collect various information (variable values, spectra and the like). - KoVadim
  • @KoVadim and when I turned off the debugger, and then re-enable it. Apparently some information is lost - voipp
  • @KoVadim advise the literature on the debugger (what changes the bytecode makes, what types of breakpoint are it) - voipp
  • I don't know that much and love java. Therefore, my advice is simple - you can, use other languages ​​:) - KoVadim

0