Revert "Reapply "archive 삭제""

This reverts commit aec9ae8c43.
This commit is contained in:
2026-04-09 10:45:31 +09:00
parent 7225e53760
commit 4510784946
245 changed files with 3799 additions and 0 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());`
```