목록분류 전체보기 (20)
yj factory
Math.floor(Math.random() * 최대범위숫자) + 1
1. fmt 태그 라이브러리 추가 2. 코드 YYYY-MM-dd 형식으로 변경하기 3. 에러가 발생할 경우 입력받는 값이 Date타입이 아니라 String 타입일 경우 //String 데이터를 Date 타입으로 변경후 //Date타입으로 변경된 변수 사용
1. /etc/apache2/sites-available 에 서브도메인 conf 파일 추가 //ex: sub.domain.com.conf ServerName sub.domain.com ProxyPreserveHost on ProxyPass / http://localhost:8000/ #node.js 포트입력 2. a2ensite를 사용하여 conf 파일적용 sudo a2ensite sub.domain.com 3. proxy, proxy_http 활성화하고, apache2 리스타트 sudo a2enmod proxy sudo a2enmod proxy_http sudo service apache2 restart
if('ontouchstart' in document.documentElement){ alert("touch device"); }else{ alert("not touch device"); }
웹에디터를 이용해서 작성된 글이 html 태그가 포함되서 저장될 경우 해당 글만 가져오고 싶은경우 오라클의 정규식을 사용한다. REGEXP_REPLACE(컬럼명,']*>','')
Date.prototype.yyyymmdd = function(){ var yyyy = this.getFullYear().toString(); var mm = (this.getMonth() + 1).toString(); var dd = this.getDate().toString(); return yyyy +"-"+(mm[1] ? mm : '0'+mm[0])+"-"+(dd[1] ? dd : '0'+dd[0]); }; alert((new Date).yyyymmdd()); > 실행 >참고 : http://stackoverflow.com/questions/3066586/get-string-in-yyyymmdd-format-from-js-date-object
오라클 다중 LIKE 사용하기 1.OR 사용 WHERE (name LIKE '%홍%' OR name LIKE '%김%' OR name LIKE '%서%') 2. 정규식 사용 (10g 이상) WHERE REGEXP_LIKE(name, '홍|김|서')
COMMENT ON COLUMN 테이블명.컬럼명 IS '코멘트'; --예 COMMENT ON COLUMN company.PERSON IS '사원'; --company테이블 PERSON 컬럼에 "사원"이라는 코멘트 추가
@ModelAttribute를 사용해 파라미터값들을 받을때 Date형의 input값이 비어있으면 오류가 발생한다. 컨트롤러 클래스 상단에 다음과 같이 소스를 넣어주어 해결한다. @InitBinder public void initBinder(WebDataBinder binder) { SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); }