일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Eclipse
- Android
- swingx
- jQuery
- ibsheet
- phonegap
- MFC
- Ajax
- WebLogic
- MySQL
- 선택적조인
- 전자정부프레임워크
- 가우스
- PHP
- JDOM
- sencha touch
- tomcat
- node.js
- iBATIS
- JSON
- Spring
- Struts
- oracle
- PLSQL
- Google Map
- rowspan
- jsr 296
- GPS
- appspresso
- dock
- Today
- Total
목록분류 전체보기 (632)
Where The Streets Have No Name
ant를 이용하면 현재 개발하는 eclipse project를 jar로 빌드하면서 참조하는 라이브러리를 하나로 합치는 기능이 있습니다. 공통모듈 copy-dependencies, jar 두개의 task로 작업이 가능하면 jar2는 이두개를 하나로 합친경우입니다. 참고 : https://mkyong.com/ant/ant-create-a-fat-jar-file/
로컬에서 junit상의 코드에서는 jersey client를 이용해서 통신에 문제가 없었으나 weblogic 12c에 올리자 에러발생 에러메세지를 확인해보니 weblogic에서 제공하는 httpurleconnection을 사용하면서 에러가 발생. deepakmodi2006.blogspot.com/2011/05/how-to-fix-javaioeofexception-response.html How to fix "java.io.EOFException: Response contained no data" How to fix "java.io.EOFException: Response contained no data" Some time while working in Weblogic server environment, ..
javax.net.ssl.SSLException: Certificate doesn't match any of the subject alternative names apache httpclient로 ssl을 연동한 연결을 하는 경우 위와 같은 에러가 발생합니다. SSLConnectionSocketFactory scsf = new SSLConnectionSocketFactory( SSLContexts.custom().loadTrustMaterial(null, new TrustSelfSignedStrategy()).build(), NoopHostnameVerifier.INSTANCE) httpclient = HttpClients.custom().setSSLSocketFactory(scsf).build() 버전..
Linear algebra from Sungbin Lim Matrix calculus from Sungbin Lim
Elastic Search (엘라스틱서치) 입문 from SeungHyun Eom
http://oukr.tistory.com/49 http://wiki.gurubee.net/pages/viewpage.action?pageId=26744104
출처 : http://www.gurubee.net/lecture/1903Oracle10g 부터 CONNECT BY 절에서 제공하는 CONNECT_BY_ROOT, SYS_CONNECT_BY_PATH, CONNECT_BY_ISLEAF 기능에 대해서 알아보자CONNECT_BY_ROOT계층구조 쿼리에서 LEVEL이 0인 최상위 로우의 정보를 얻어 올 수 있다.?1234567891011121314SELECT LPAD(' ', 4*(LEVEL-1)) || ename ename, empno,CONNECT_BY_ROOT empno "Root empno", level FROM emp START WITH job='PRESIDENT'CONNECT BY PRIOR empno=mgr; ENAME EMPNO Root empno ..
숫자형함수 (ROUND, TRUNC) http://blog.naver.com/oasis1570/40130484285
$menu = array(); $menu[] = array('type' => 'appetizer', 'dish' => 'Chicken Soup'); $menu[] = array('type' => 'main course', 'dish' => urlencode('무궁화')); $json_result = json_encode($menu); header('Content-Type: application/json'); echo urldecode($json_result); $ad_arr[0]['title'] = urlencode("치킨팝"); $ad_arr[0]['explain'] = urlencode("[치킨팝]어플 다운로드시 200원 적립!!"); $ad_arr[0]['method'] = urlencode("다운..