Reapply "archive 삭제"

This reverts commit 69ab355bb9.
This commit is contained in:
2026-04-09 10:19:10 +09:00
parent 69ab355bb9
commit aec9ae8c43
245 changed files with 0 additions and 3799 deletions
@@ -1,13 +0,0 @@
### Heap Dump 뜨기
```bash
jmap -dump:format=b,file=heapdump.hprof {PID}
```
[[PID]]
ex)
```bash
jmap -dump:format=b,file=heapdump.hprof 84544
```
### Heap Dump 분석하기
Eclipse Memory Analyzer (MAT)를 사용하자.
@@ -1,9 +0,0 @@
[https://jplag.github.io/JPlag/](https://jplag.github.io/JPlag/)
- jdk 17 필요함.
- jplag 설치(binary) 필요
```bash
.\java -jar .\jplag-4.2.0-jar-with-dependencies.jar -old C:\MyFolder\temp_workshop\scomorigin -new C:\MyFolder\temp_workshop\scomnow
```
-12
View File
@@ -1,12 +0,0 @@
Process ID
jps
JDK에 포함되어 있는 JPS 명령어를 활용해서 JVM 내부에서 돌아가고 있는 PID를 파악합니다.
[-v] 옵션을 추가적으로 입력 시 실행 시 입력된 parameter도 확인할 수 있습니다.
Java code로 PID 출력하기
```java
`System.out.println(``"ProcessID(PID): "` `+ ManagementFactory.getRuntimeMXBean().getName());`
```