일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Maven
- 컬럼명
- scrollView
- jsp
- Java
- javascript
- Redirect
- Android
- MS-SQL
- asp.net
- Apache Lucene
- Web Service
- STS
- 자바스크립트
- 웹뷰
- decompiler
- TextBox
- WebView
- MSsql
- 자바
- Eclipse
- C#
- Bootstrap
- 안드로이드
- MANTIS
- 이클립스
- varags
- 웹 서비스
- html
- SpringSource Tool Suite
- Today
- Total
목록분류 전체보기 (286)
bboks.net™
Context Diagram A DFD (Data Flow Diagram) that summarizes all processing activity within the system in single process sysbol. Describes highest level view of a system All external agents and all data flows into and out of a system are shown in the diagram The whole system is represented as one process The data flows that pass between the external entities and the system DFD (Data Flow Diagram) A..
Java provides a mechanism for creating copies of objects called cloning. There are two ways to make a copy of an object called shallow copy and deep copy. Shallow copy is a bit-wise copy of an object. A new object is created that has an exact copy of the values in the original object. If any of the fields of the object are references to other objects, just the references are copied. Thus, if the..
총 데이터 수가 37개인 데이터를 페이징 처리 해보자. 데이터는 DB에서 가져오거나 xml파일을 읽어올 것이다. 페이지를 3 페이지씩 보여줄 수도 있고 [1] [2] [3] [다음] 혹은 10페이지씩 보여줄 수도 있다. [1] [2] [3] [4] [5] ...[10] [다음] 값 셋팅에 따라 달라질 수 있도록 페이지그룹 사이즈(pageGroupSize) 변수를 사용하겠다. 셋팅할 수 있는 값이 페이지그룹 사이즈 말고 또 무엇이 있을까? 한 페이지 당 보여주는 리스트 갯수도 변할 가능성이 많다. 이것은 페이지 사이즈(pageSize) 변수로 놓자. 그러면, 페이징 로직의 결과를 예측하기 위해서 이 두개의 변수에 값을 넣어보자. 총 데이터 갯수 (count): 37 페이지그룹 사이즈 (페이지그룹을 몇개씩 ..
Java에서 현재 시스템의 정보를 가져오기 위해서는 System 클래스의 getPoperty(String key) 메소드를 이용하면 된다. Key Description 1 java.version The version of Java Runtime Environment. 2 java.vendor The name of Java Runtime Environment vendor 3 java.vendor.url The URL of Java vendor 4 java.home The directory of Java installation 5 java.vm.specification.version The specification version of Java Virtual Machine 6 java.vm.specificat..