본문 바로가기
728x90
728x90

BackEnd FrontEnd67

-Xss 옵션 개별 Thread의 Stack Size를 지정한다. Thread Stack Size가 1M 이고 Thread가 최대 100개 활성화 된다 최대 100M의 메모리를 사용하게 된다. 대부분의 경우 기본값을 그대로 사용하는게 바람직하다 많은 수의 Thread를 사용하는 Application의 경우 Thread Stack 에 의한 메모리 요구량이 높아지며 이로 인해 OOM이 발생 이런 경우에는 -Xss옵션을 이용해 Thread Stack Size를 줄여 주어야한다. 2019. 12. 30.
Mac 에서 openssl 설치하기 $ brew reinstall openssl@1.1 // 기존에 설치되어 있어서 재설치함 , 일반 설치는 brew install openssl ==> Reinstalling openssl@1.1 ==> Downloading https://homebrew.bintray.com/bottles/openssl@1.1-1.1.1d.catalina.bottle.tar.gz ==> Downloading from https://akamai.bintray.com/d7/d7f992ebfd78f80828051f6dc6a1a99aed405f86b0f39ea651fd0afeadd1b0f4?__gda__=exp=1577628458~hmac=45a5217af4f964e67bbb #############################.. 2019. 12. 29.
arm cross compile 시 curl negative size error 발생하는 경우 /opt/arm-2013.11/arm-none-linux-gnueabi/include/curl/curlrules.h:142:3: error: size of array '__curl_rule_01__' is negative __curl_rule_01__ ^ /opt/arm-2013.11/arm-none-linux-gnueabi/include/curl/curlrules.h:152:3: error: size of array '__curl_rule_02__' is negative 에러가 나는경우 아래와 같이 사이즈를 줄여준다. In case system reports __curl_rule_01__ or __curl_rule_02__ is negative make the following changes to /u.. 2019. 12. 18.
jar와 war의 차이 java archive jar 압축은 하나의 application 기능이 가능하도록 java파일 등을 압축하고 지원 path 등의 경로를 유지하기 때문에 배포된 jar 파일을 사용하는 사용자들은 각 파일들에 대한 path 문제에서 벗어날 수 있습니다. 예를 든다면 ojdbc14.jar, servlet-api.jar 등을 들 수 있습니다. web archive war는 jar와 달리 웹 어플리케이션을 지원하기 위한 압축방식입니다. 웹 어플리케이션을 지원하기 위해서 war 압축방식은 jsp, servlet, gif, html, jar 등을 압축하고 지원해주며 이는 jar와 같은 맥락으로 servlet context 접근을 위해 관련된 모든 파일들을 패키지화 추가로 enterprise archive 하나의 웹.. 2019. 12. 16.
728x90
728x90