일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JDOM
- ibsheet
- iBATIS
- phonegap
- Spring
- 선택적조인
- jQuery
- swingx
- appspresso
- rowspan
- 가우스
- PHP
- Android
- Eclipse
- node.js
- Struts
- Google Map
- 전자정부프레임워크
- oracle
- sencha touch
- PLSQL
- jsr 296
- GPS
- JSON
- WebLogic
- tomcat
- MySQL
- Ajax
- dock
- MFC
- Today
- Total
목록분류 전체보기 (633)
Where The Streets Have No Name
private void jButton1MouseClicked(java.awt.event.MouseEvent evt) { try { int i = 100 / 0; } catch (Exception e) { JXErrorPane.showDialog(this, new ErrorInfo("Error", e.getMessage(), null, null, e, null, null)); } }
http://codery.blogspot.com/2008/05/installing-swingx-in-netbeans-61.html SwingX adds some really nice UI and other improvements to Swing. It's sponsored by Sun, and may be released in a future version of Java, but appears stable enough to use in projects now. There's a tutorial on how to set it up, but it's missing some important content, so here's how I did it: 1. Download and unzip from http:/..
Basic patterns Data Access Objects Saving (detached) entities Retrieving entities Removing entities Service Facades and Data Transfers Objects Advanced patterns Bidirectional assocations Lazy loading Bidirectional associations vs. lazy loading Using UUIDs as primary keys Field access vs. property access Mapping inheritance hierarchies Testing
참고 : http://cafe.naver.com/eclipseplugin/1975 ApplicationWorkbenchWindowAdvisor의 preWindowOpen 메소드에서 아래와 같이 코드를 추가한다. PlatformUI.getPreferenceStore().setValue(IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS, false);
package rcpview; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.widgets.Shell; import org.eclipse.ui.application.ActionBarAdvisor; import org.eclipse.ui.application.IActionBarConfigurer; import org.eclipse.ui.application.IWorkbenchWindowConfigurer; import org.eclipse.ui.application.WorkbenchWindowAdvisor; public class ApplicationWorkbenchWindowAdvisor e..
출처:http://www.debuglab.com/knowledge/csocket.html http://microsoft.ease.lsoft.com/scripts/wa-msn.exe?A2=ind9811c&L=mfc&T=0&P=5460 1.요약 CSocket / CAsyncSocket을 생성한 곳이 아닌 다른 Thread로 넘겨 처리할 경우 CSocket이 가진 Thread state가 변해 에러가 발생합니다. 예를들어 한쪽에서는 Listen을 하여 클라이언트 Socket을 Accept하고, Thread를 생성시켜 Socket전송을 맡길 경우에 Thread문제를 해결하는 방법을 소개하겠습니다. 2.본문 방법은 간단합니다. Accept한 Socket을 Deatch시키고 거기에서 나온 handle을 Thread..
sudo apt-get install build-essential
http://www.devpia.com/MAEUL/Contents/Detail.aspx?BoardID=51&MAEULNO=20&no=8187&page=2
eclipse에서 tomcat에서 ibatis를 연동해서 개발시 ibatis의 debug로그를 볼려구 log4j를 설정한 경우 tomcat에서 제공하는 무수한 log메세지가 출력되서 문제가 되는 경우가 있습니다. tomcat의 로그만 skip하는 방법이 logger별 level를 지정하는 방법입니다. # SqlMap logging configuration... log4j.logger.com.ibatis=DEBUG log4j.logger.com.ibatis.common.jdbc.SimpleDataSource=DEBUG log4j.logger.com.ibatis.common.jdbc.ScriptRunner=DEBUG log4j.logger.com.ibatis.sqlmap.engine.impl.SqlMapCl..
https://glassfishplugins.dev.java.net/eclipse34/index.html
The DOM is a Mess @ Yahoo from jeresig
출처 : http://www.soqool.com/servlet/board?cmd=view&cat=100&subcat=1010&seq=83&page=1&position=1 rollup 을 활용하는 기본적인 예제이다. 예제1) all_objects 테이블에서 rownum 순서로 10개씩 object_id 합의 소계를 구해 나간다. 쿼리를 주의깊게 보고 응용해보면 좋을 것이다. SELECT owner, object_name, rn, SUM (object_id) FROM (SELECT owner, object_name, object_id, ROWNUM rn FROM all_objects WHERE ROWNUM
http://scidb.tistory.com/entry/Pipelined-Table-Function-의-사용 http://www.oracle-developer.net/display.php?id=207
https://blog.naver.com/goethe1004/80034140150