远程调试一般是如何实现的
我使用从 JDeveloper 到 Weblogic 服务器的远程调试已经有一段时间了,发现它非常有用。但我有兴趣了解远程调试在技术上是如何实现的。
当我在调试服务器的远程计算机上进行任何 java 代码更改并在 jdeveloper 中重建类时,代码更改会自动获取服务器。这是怎么发生的?该工具是否将网络上编译好的java类发送到服务器?
任何人都可以分享任何解释远程调试技术细节的文档/链接吗?
谢谢&问候, 哈里什
I have been using remote debugging from JDeveloper to Weblogic server for quite sometime and found it's very useful. But I am interested in understanding how remote debugging is implemented technically.
When I make any java code change and rebuild the class in jdeveloper on a remote machine from where I am debugging the server, the code changes are automatically picked up the server. How does this happen? Does the tool send the compiled java class on the network to server?
Can any one please share any documents / links explaining the technicalities of remote debugging.
Thanks & Regards,
Harish
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您是在询问一般的远程调试,还是在询问您所描述的特定工具。
我对 Java/jdeveloper 了解不多,但一般远程调试的工作原理如下:
例如,阅读 gdbserver 这可能是最流行的远程调试服务器。
希望这有帮助:)
Not sure if you're asking about remote debugging in general, or for the particular tools you're describing.
I don't know much about Java/jdeveloper, but in general remote debugging works as follows:
Read, for example, on gdbserver which is probably the most popular remote debugging server out there.
Hope this helps :)