본문 바로가기

전체 글136

Phantomjs 캡쳐 한글 안뜨는 오류 현상 훕포메이션 자동작업으로 페이스북 업로드를 시키는데아래와 같은 결과가 일어난다. 서버 이전 이후, 한글 폰트를 깔지않아서 일어난 결과다. 나는 나눔폰트 설치sudo apt-get install -y fonts-nanum 해결 2018. 8. 29.
Elastic Search 벌크 ELASTIC SEARCH 벌크 ELASTIC SEARCH 벌크 여러개의 Document를 한번에 Elastic search에 넣는 법 curl 6버전이상에선 -H "Content-Type:application/json"을 넣는 것을 기억하자 xxxxxxxxxxcurl -XPOST localhost:9200/_bulk?pretty --data-binary @classes.json 벌크 작업. 아래의 구조xxxxxxxxxxPOST /customer/external/_bulk?pretty{"index":{"_id":"1"}}{"name": "John Doe" }{"index":{"_id":"2"}}{"name": "Jane Doe" } http://host:port/(index)/(type)/(action|.. 2018. 8. 29.
Elastic Search 자료구조 / GET POST PUT DELETE / UPDATE방법 ELASTIC SEARCH ELASTIC SEARCH엘라스틱 서치의 자료구조indextypedocument 엘라스틱 서치 VS 관계형DBElastic SearchRelational DBIndexDataBaseTypeTableDocumentRowFieldColumnMappingSchemaElastic SearchRelational DBGETSelectPOSTInsertDELETEDeletePUTUpdate엘라스틱서치는 Rest-API를 쓴다는 것을 짐작할 수 있다. curl -XGET localhost:9200/classes/class/1xxxxxxxxxxselect * FROM class where id=1 xxxxxxxxxxcurl -XPOST localhost:9200/classes/class/1 -.. 2018. 8. 29.
JAVA 예외처리 / 입출력 자바 자바 예외처리 ExceptionInputMismatchExceptionArrayIndexOutOfBoundsExpectionNullPointerException 오류 내용을 보기 위해서는printStackTrace() 사용 throws예외 발생시 예외 처리를 직접하지 않고 호출한 곳으로 넘김 ​xMainClass004 mainClass004 = new MainClass004();​try { mainClass004.firstMethod(); } catch (Exception e){ e.printStackTrace();}xxxxxxxxxxpublic void firstMethod() throws Exception{ System.out.println(10/0);}firstMethod의 예외 발생을 mai.. 2018. 8. 28.
9월 내 포스팅 목표 1. 영문 이력서 쓰면서 포트폴리오만 따로 포스팅2. github블로그로 프로젝트 수행내용 정리한 개발자 페이지 개설3. SQLD, LPIC 1 자격증 공부 관련4. 구상중인 어플리케이션 개발 상황 때려치고싶어도 좋은 것만 생각하고 조금만 더 버티면서 삽시당- 신한 디라스 / 구글2019winter인턴 목표 2018. 8. 25.
반응형