일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Bootstrap
- MSsql
- Maven
- STS
- scrollView
- Redirect
- MANTIS
- decompiler
- asp.net
- html
- 이클립스
- TextBox
- javascript
- Eclipse
- MS-SQL
- 자바
- Web Service
- Android
- 안드로이드
- SpringSource Tool Suite
- jsp
- 자바스크립트
- Java
- 컬럼명
- varags
- C#
- WebView
- Apache Lucene
- 웹 서비스
- 웹뷰
- Today
- Total
목록Java (59)
bboks.net™
0. 룩앤필(look and feel)이란? 소프트웨어 디자인에서 룩앤필은 GUI(Graphical User Interface)측면과 디자인의 형태 구성에서 사용되는 용어로 색상, 모양, 레이아웃, 서체(look)와 같은 요소와 버튼, 박스, 메뉴(feel)와 같은 동적 요소의 행위를 포함한다. 1. 소개 별도로 룩앤필을 지정하지 않으면 자바 룩앤필이 기본으로 지정된다. 룩앤필을 지정할 때에는 다음과 같이 UIManager 클래스를 사용하면 된다 try { UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName()); } catch (Exception e) { System.err.println("Cannot set look and ..
효과적인 디자인은 차후 애플리케이션에 대한 유지보수 및 확장의 측면에 있어서 비용을 결정하는 큰 요소로서 작용할 수 있는 부분이다. 여기서는 JSP Model 1 Architecture와 JSP Model 2 Architecture에 대하여 살펴보도록 하자. ▶ JSP Model 1 Architecure 가장 전형적으로 구성할 수 있는 웹환경은 request에 의한 처리를 JSP페이지로서 이용하며, request의 데이터를 추출하여 JavaBeans를 이용한 기존 datasource의 이용 및 EIS환경에 접속하여 일을 수행할 수 있는 형태를 취하고 있는 경우가 대부분이었는데 그림으로 도식화하여 보면 아래와 같다. 위의 형태를 가르켜 JSP Model 1 Architecture라고 하는데 이 경우 cli..
Coding conventions are a set of guidelines for a specific programming language that recommend programming style, practices and methods for each aspect of a piece program written in this language. These conventions usually cover file organization, indentation, comments, declarations, statements, white space, naming conventions, programming practices and etc. Software programmers are highly recomm..