전체 글(366)
-
secureCRT 세션유지설정 2021.11.26
-
Intellij - VM warning
오류 메시지 Java HotSpot(TM) 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release. 해당 경고는 JDK13에서 -Xverify:none와 -noverify 옵션이 제거되면서 발생하는 오류라고한다. 관련 오류 내용 : JDK-8214719 : Deprecate -Xverify:none option 아래 옵션 체크 해제
2021.11.20 -
프로세스 종료한 적 없는데 Kill이 되어있음.
dmesg 메시지 확인 1. 메모리 부족으로 인해 OS가 kill을 시킨 경우 (/var/log/message 확인 가능 또는 dmesg 명령어로) 2. Hardware fault 로 stop 된 경우 3. bug로 인해 restart된 경우 해결책 실행 메모리 할당량을 늘린다. Linux는 실제 물리 Memory보다 많은 양의 가상 Memory 공간을 생성하고 Process에게 할당 한다. 이러한 Memory 관리 정책을 Memory Overcommit이라고 명칭한다. 따라서 다수의 Process가 동시에 많은양의 Memory를 이용할 경우, 물리 Memory 공간이 부족현상이 발생할 수 있다. Linux의 Swap 기법은 물리 Memory 공간 부족시 Disk의 일부 영역을 Memory 처럼 활용하는..
2021.09.01 -
Java Garbage Collector
Heap 분석 사이트 : https://heaphero.io/ java process outofmemory 되면 heapmemory 덤프 -XX:-HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=./java_pid.hprof $ jstat -gcutil -h5 22757(pid입력) 1000 gc가 발생한 원인 출력 $ jstat -gccause -h10 22757 1000 /home1/irteam/apps/jdk1.8/bin/jstat -gccause -h10 22757 1000 jstat -gcutil을 이용하면 현재 Young 영역과 Old 영역의 메모리 사용률을 확인할 수 있음. S0 : S0 영역 사용율 S1 : S1 영역 사용율 E : Eden 영역 사용율 O :..
2021.09.01 -
알고리즘 공부 사이트
- 릿코드 https://leetcode.com/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com - 코드워즈 https://www.codewars.com/ Codewars: Achieve mastery through challenge Codewars is where developers achieve code mastery through challenge. T..
2021.07.25 -
Spring boot ajax 를 이용하여 리스트 VO 받기
데이터 임의 가공 var array = new Array(); for(var i=0; i
2021.07.15