에임에서의 기록 백업

This commit is contained in:
2026-04-01 15:11:05 +09:00
parent be892052e2
commit 4bafee36ee
251 changed files with 3726 additions and 253 deletions
+12
View File
@@ -0,0 +1,12 @@
Process ID
jps
JDK에 포함되어 있는 JPS 명령어를 활용해서 JVM 내부에서 돌아가고 있는 PID를 파악합니다.
[-v] 옵션을 추가적으로 입력 시 실행 시 입력된 parameter도 확인할 수 있습니다.
Java code로 PID 출력하기
```java
`System.out.println(``"ProcessID(PID): "` `+ ManagementFactory.getRuntimeMXBean().getName());`
```