JavaScript Closure 이해도 평가 퀴즈 퀴즈1 function sayHello(name) { var text = 'Hello ' + name; var say = function() { console.log(text); } say(); } sayHello('Joe'); // 퀴즈2 function sayHello2(name) { var text = 'Hello ' + name; // Local variable var say = function() { console.log(text); } return say; } var say2 = sayHello2('Bob'); say2(); // 퀴즈3 function say667() { // Local variable that ends up within c..
Regular Expression Based Implementation String.prototype.replaceAll = function(search, replacement) { var target = this; return target.replace(new RegExp(search, 'g'), replacement); }; Split and Join (Functional) Implementation String.prototype.replaceAll = function(search, replacement) { var target = this; return target.split(search).join(replacement); }; The regular expression based implementa..
이클립스 메이븐 Maven dependency lib export 추출 방법프로젝트 - 우클릭 - Run As -Maven Build Goals 에 dependency:copy-dependencies 추가 Run 실행project- target - dependency folder 에 라이브러리 파일 떨어짐 출처: http://leejiheg.tistory.com/entry/이클립스-메이븐-Maven-dependency-lib-export-추출-방법 [지똥이]
분명히 서비스에서 잘 실행되는데도 아래와 같은 에러가 발생했다. ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) 이유는 MySQL 포트가 3306이 아니었기 때문이었다. 아래 코드로 실행하면 커맨드창에서 my.ini 설정을 적용한 mysql을 실행할 수 있다. "C:\Program Files\MySQL\MySQL Server 5.6\bin\mysql.exe" "--defaults-file=C:\ProgramData\MySQL\MySQL Server 5.6\..
- Total
- Today
- Yesterday