インストールしたウィンドウ サービスがあります。アプリケーションのソース コードを Intelli J で開いています。
次のように構成IntelliJを作成しました
サービスのPIDと使用しているポートを確認しました。
Intelli J で Remote config を実行すると、次のエラーが発生します
4:09:18 PM Error running Remote: Unable to open debugger port : java.net.ConnectException "Connection refused: connect"
IntelliJ でウィンドウ サービスをデバッグする方法を教えてください。ジョブスケジュールアプリです。
installService.cmd は次のとおりです。
set HOME_DIR=%~dp0
set SERVICE="Service_Name"
SET JAVA_OPTIONS=-Xms256m -Xmx256m
@echo Service name is Service_Name
"pathname\Service_Name.exe" -install %SERVICE% %JVM% %JAVA_OPTIONS% -Djava.class.path="pathname\Service_Name.jar" -Dorg.quartz.properties="pathname/Service_NameScheduler.properties" -start com.org.st.Service_Name -stop com.org.st.Service_Name -out "D:/core_log\Service_Name_service_out.log" -err "D:/core_log\Service_Name_service_error.log" -current "pathname\apps"
set JVM="C:/Program Files/Java/jdk1.6.0_29/jre/bin/server/jvm.dll"