1. Java 실행 옵션에 다음 추가
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000
ex)
java -Dsun.misc.URLClassPath.disableJarChecking=true -server -Xms2g -Xmx2g -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000 -Dfile.encoding=UTF-8 -Dconsole=true -jar test.jar --spring.profiles.active=alpha
2. IDE로 디버깅
Eclipse
Eclipse -> Run -> Debug Configuration -> Remote Java Application -> Build 에서
Host : 원격 서버 ip
Port : address로 넣어준 port (여기선 8000)
입력 후 Debug 시작
Intellij
Edit configuration -> Add new configuration -> remote
Host : 원격 서버 ip
Port : address로 넣어준 port (여기선 8000)
입력 후 Debug 시작
'개발 > 기타' 카테고리의 다른 글
[PHP] Call to undefined function dl() (0) | 2020.02.10 |
---|---|
카프카(Kafka) (0) | 2020.01.30 |
Cross-origin 파일 이름 변경해서 다운로드 하기 (0) | 2020.01.09 |
Vue.js에서 Props가 안넘어가는 문제 (undefined) (0) | 2020.01.08 |
[Nginx] 'Server' 헤더 제거 (0) | 2019.02.07 |