일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바
- MANTIS
- Bootstrap
- MSsql
- STS
- 컬럼명
- Maven
- WebView
- jsp
- 웹 서비스
- varags
- asp.net
- html
- 이클립스
- Eclipse
- TextBox
- javascript
- SpringSource Tool Suite
- 안드로이드
- Apache Lucene
- 웹뷰
- Redirect
- MS-SQL
- Web Service
- 자바스크립트
- decompiler
- Android
- Java
- scrollView
- C#
- Today
- Total
목록전체 글 (286)
bboks.net™
Socket의 SetSocketOption 메소드를 사용하고 다시 바인드를 시키면 됨 socket.SetSocketOption(SocketOptionLevel.Socket,SocketOptionName.ReuseAddress, true); [출처] Can't Re-bind a socket to an existing IP/Port Combination
Eclipse "Help" 메뉴 - "About Eclipse" 선택"Instaallation Details" 버튼 선택제거할 plug-in 선택 후 아래의 "Uninstall.." 버튼 선택. [출처] [Eclipse] Eclipse 에 설치한 plug-in 삭제 방법.
If you are like me you use windows run command all the time. I hate using the mouse to point and click a shortcut on the start menu. WIN-R are probably the two most over used keys on my keyboard. After thinking about if awhile I hunted down how the run command works. It turns out that it makes a call to ShellExecute, which I guess is not too surprising. The next thing I wanted to find out was ex..
Hibernate를 사용하다보면 Criteria를 재사용할 상황이 가끔 생긴다. 예를 들면 Paging과 같은 nHibernate에는 CriteriaTransformer(?)에서 지원을 하는 것 같은데 hibernate에서는 없는 것 같음 이를 우회하는 방법은 criteria의 projection을 초기화하고 다시 세팅하는 방법이 있다. ProjectionList projectionList = Projections.projectionList(); //전체 개수를 가져옴 int totalCount = Integer.parseInt(criteria.setProjection(Projections.rowCount()).list().get(0).toString()); //criteria 재사용을 위해 projec..