분류 전체보기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. 이전 1 ··· 18 19 20 21 22 23 24 ··· 34 다음 반응형