10 Haziran 2022 Cuma

jdb komutu

-attach seçeneği
Örnek
Şöyle yaparız
$ jdb -attach 127.0.0.1:8000
> Initializing jdb ...
Örnek
Eğer uygulama çalışmıyorsa veya debug modunda çalıştırılmadıysa hata olarak şunu alırız
$ jdb -attach localhost:8000
java.net.ConnectException: Connection refused (Connection refused)
-sourcepath seçeneği
Açıklaması şöyle
The sourcepath argument allows you to provide the colon-separated list of paths to look for the sources. You can provide not only the sources of your application but also the sources of the libraries you use, to be able to easily follow their source code during the debugging session.
Örnek
Şöyle yaparız
$ jdb -attach localhost:8000 -sourcepath ~/dev/remote/src/main/java/
Set uncaught java.lang.Throwable
Set deferred uncaught java.lang.Throwable
Initializing jdb ...
>


Hiç yorum yok:

Yorum Gönder