In IntelliJ IDEA, how can I disconnect a debugger from a tomcat server running in debug mode

I sometimes do development in an application with an OSGI managed plug-in system. Often I will debug the main application, and then I understand that I need to look deeper into one of the plugins. Since the plugins specified in pom may differ from the actual versions, I would like to disconnect the auto-connect debugger and attach another from a separate IDEA window. I can't seem to find a way to do this without restarting the application in startup mode using jvm arg. Does IDEA provide a mechanism for this?

+4
source share

All Articles