Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果您使用 arguments 运行 java 进程-Xdebug -agentlib:jdwp=transport=dt_socket,suspend=n,server=y,address=9000,则一旦调试器附加到该端口,该进程就会停止侦听该端口。然后,一旦调试器分离,您将无法再次连接到它。分离后有什么方法可以附加调试器?或者是否有一个jdwp代理服务器总是附加到进程并允许调试器随意附加和分离?
-Xdebug -agentlib:jdwp=transport=dt_socket,suspend=n,server=y,address=9000
简短的回答是肯定的,你应该能够重新连接。这样做应该没有问题。如果多个应用程序在分离/附加期间尝试绑定到同一个端口,则可能存在竞争条件,但我没有看到任何其他可能的问题。