오늘도 외국 개발자님들의 은혜로 -_-
http://stackoverflow.com/questions/20057771/no-junit-tests-found-in-eclipse junit test가 제대로 작동을 안해서 찾아보니 tests not founded 라는 메시지가 나왔다. 링크를 삭제했다가 다시 build path에서 추가해주니 정상적으로 된다. thank you for s...
http://stackoverflow.com/questions/20057771/no-junit-tests-found-in-eclipse junit test가 제대로 작동을 안해서 찾아보니 tests not founded 라는 메시지가 나왔다. 링크를 삭제했다가 다시 build path에서 추가해주니 정상적으로 된다. thank you for s...
https://slipp.net/wiki/pages/viewpage.action?pageId=12878219
컬럼이 존재하는지 여부 db.table.find({‘a’:{$exists:true}}) = a가 존재하면 나옴 db.table.find({‘a’:{$exists:false}}) = a가 없는 애들 나옴
각각 라이브러리 버전마다 참조가 되어져있는 라이브러리들이 있는데, 메이븐에서 기본적으로 최신을 선택해 주지만 webjars 쪽 라이브러리에서는 최신버전을 가끔 알 수가 없어서 하위 버전이 최신 버전이 되는 경우가 있다. 이럴 경우 pom.xml 에 Dependency Hierarchy 부분을 확인하고 maven에 걸어진 라이브러리가 최신이 잘 ...
https://github.com/angular/material/issues/4251 역시 양키성님들
http://stackoverflow.com/questions/4486787/jackson-with-json-unrecognized-field-not-marked-as-ignorable 프로젝트 parameter 부분에 Vo로 request를 받는 부분이 있었는데, 개발 했을 때 당시 문제가 없었다. 하지만 -_-; 다른 쪽 모듈 개발시 에러가 발...
down voteaccepted Telnet to your smtp server like telnet smtp.mydomain.com 25 Syntax : telnet {smtp_domain_name} {port_number} And copy and paste the below hello velanapps.com mail from: rc...
http://stackoverflow.com/questions/13606469/cannot-change-column-used-in-a-foreign-key-constraint 내가 생각하는 베스트 답변은 foreign-key-check를 끄는거다. -_-; SET FOREIGN_KEY_CHECKS = 0; /* DO WHAT YOU NEED HE...
mysql의 기본설정은 대소문자를 구분하지 않는다.쿠폰코드같은 대소문자를 구분해야하는 서비스의 경우 당황스러울수 있다.데이터정렬방식을 utf8_bin 으로 설정해주면 해당 컬럼만 대소문자를 구분하게 할수 있다.coupon_num varchar(16) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT ‘쿠폰 ...
varchar() = 대소문자 구분 안함 varbinary() = 대소문자 구분 mysql> SELECT * FROM TOKEN_DIC WHERE token_name = ‘icon’; +————+ token_name +————+ icon ...
### @annotationdescription@MessageMappingSTOMP client의 send에 대한 target url입니다.@SendToSTOMP client의 subscribe에 대한 target url을 지정합니다. (지정되지 않은 경우, @MessageMapping에 지정된 URL + @Configuration에서 설정된 pre...
What is STOMP? STOMP is a simple text-orientated messaging protocol. It defines aninteroperable wire format so that any of the available STOMP clients can communicate with any STOMP message broker...
http://m.mkexdev.net/98 http://m.mkexdev.net/98 [HTML5] Web Socket (웹 소켓)실시간 (양방향) 통신을 위한 웹의 노력 개인적인 생각으로 HTML5의 새로운 스펙중에 사용자가 가장 흥미로워 한 것이 Canvas 라면 개발자가 …m.mkexdev.net
백업 : mongodump ** mongodump –out “백업파일 생성할 폴더위치” –host “아이피” –port “포트” -u아이디 -p패스워드 –db DB명 ** 예) mongodump –out /home/mongo/dump/20150515 –host 127.0.0.1 –port 27017 -uihchoi -p1234 –...
템플릿 메소드 페턴에서는 메소드에서 알고리즘의 골격을 정의합니다. 알고리즘의 여러 단계 중 일부는 서브클래스에서 구현할 수 있습니다. 템플릿 메소드를 이용하면 알고리즘의 구조는 그대로 유지하면서 서브클래스에서 특정 단계를 재정의할 수 있습니다.