Eclipse RCP製品をデバッグすることは可能ですか?はいの場合、どうすればよいですか?私は次のような議論を見つけました
-vmargs -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n
しかし、それをどこに置くかわからず、デバッグするのに十分ですか?VM引数(ファイル* .productタブの起動)に含める必要がありますか?
Eclipse RCP製品をデバッグすることは可能ですか?はいの場合、どうすればよいですか?私は次のような議論を見つけました
-vmargs -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n
しかし、それをどこに置くかわからず、デバッグするのに十分ですか?VM引数(ファイル* .productタブの起動)に含める必要がありますか?
Start the application as you described, by adding the -X parameters.
Create a new Remote Java Applicaiton in eclipse like
the Port has to be the same, you used in
-Xrunjdwp:transport=dt_socket,address=
the project you select, has to contain the class you want to debug. You also can add all projects of your worksapce to be sure, that you can debug any of them.
You can also check debugging-java-applets-in-eclipse
あなたが述べたような引数でJavaプログラムを起動すると、任意のJavaデバッガをそれにリモート接続できます。
そのため、Eclipse (IDE) でデバッグ プロファイルを作成して Eclipse (RCP) 製品に接続するだけで、ポートを指定する必要があります。(デバッグ構成は参照する場所です)
そうしないと、デバッグ・モードで Eclipse IDE から製品を開始できる可能性があります。