Tag Cloud

Blogumulus by Roy Tanck and Amanda Fazani

WIPI is a middleware platform used in South Korea that allows mobile phones, regardless of manufacturer or carrier, to run applications. Much of WIPI is based on Java, but it also includes the ability to download and run compiled binary applications as well.

The specification was created by the Mobile Platform Special Subcommittee of the Korea Wireless Internet Standardization Forum (KWISF). The South Korean government had enforced that all cellular phones sold in that country include the WIPI platform to avoid inordinate competition between mobile companies, but the policy is withdrawn from April 2009


Wi-Fi is a trademark of the Wi-Fi Alliance that may be used with certified products that belong to a class of wireless local area network (WLAN) devices based on the IEEE 802.11 standards. Because of the close relationship with its underlying standard, the term Wi-Fi is often used as a synonym for IEEE 802.11 technology.

excerpted from wikipedia

1 장례식장 서비스 인증 도입 2009
2 전국 지자체간 교통카드 호환 사용을 위한 표준화 2009
3 취업지원자의 편의증진을 위한 표준 이력서 개발 2009
4 건축물 클리닝 서비스 인증 도입 2009
5 맑은 수도물 공급을 위한 수도꼭지, 금속관 등의 수도용 제품 안전성 강화 2009
6 모바일 정보기기(휴대폰, PMP등) 문자입력방식 표준화 2010
7 진공청소기 먼지봉투의 표준화 2010
8 가전제품 공용 리모콘 표준 개발 2010
9 차량 운행정보 기록을 위한 블랙박스 표준화 2010
10 결혼식장 서비스 인증 도입 2010
11 차량수리센터 서비스 인증 도입 2010
12 소비자의 선택을 돕기 위한 고추장 매운맛 등급 표준화 2010
13 조립식 온수온돌 판넬제품 평가방법 표준화 2010
14 RFID기반 공용자전거 통합관리(대여·반납)시스템 표준화 2010
15 가전제품(TV,PC 등)의 무선통신 시스템 표준화 2010
16 모바일 USIM기반의 금융거래 보안 표준화 2010
17 건축용 샌드위치패널 화재 안전성 기준 강화  2010
18 건축물 구조 안전성 확보를 위한 레미콘 품질기준 강화  2010
19 경운기 브레이크등(燈) 표준화 2010
20 녹색 생활체육공간을 위한 인조잔디 표준화 2010
21 휴대용 멀티미디어기기 직류전원장치 표준화 2010
22 휴대폰용 배터리 표준화 2010
23 노트북 전원 어댑터 국제표준화 2011
24 김치냉장고 저장용기의 표준화 2011
25 엘리베이터 버튼위치 표준화 2011
26 공동주택 층간소음 완충재 성능 측정방법 표준화 2011
27 병원간 검사결과(X-ray,CT,초음파 등) 공동 활용을 위한 표준화 2011
28 "빨주노초파남보”알기 쉬운 색채표준 활용 확산 2011
29 의료 시험분석기관의 적합성평가체계 표준화 2011
30 고령자 및 장애인용 생활제품의 표준 개발 2011
31 사회적 배려계층의 안전과 편의를 위한 공공 그림표지 표준 확산 2011
32 차량내장재의 휘발성 유해물질 저감을 위한 표준화 2011
33 한방용 뜸 표준화 2011
34 요식업에서 사용하는 1인분 표준화 2011
35 전기자동차 충전시스템 표준화 2011
36 스마트그리드 기반 실시간 전기요금 관리체계 표준화 2011
37 전기자동차용 배터리 성능 및 안전성 평가방법 표준화 2011
38 서비스용 로봇 성능기준 표준화 2011
39 공기청정기 필터의 표준화 2012
40 최신 한국인 인체정보 확산적용을 위한 제품표준 정비 2012
41 노인요양시설 서비스 표준화 및 인증 도입 2012
42 산후조리원 서비스 인증 도입 2012
43 홍수, 테러 등의 재난대응 시스템 표준화 2012
44 범죄예방을 위해 공원 등 도시설계 표준 개발 2012
45 휴대용 심혈관질환 자가 진단용 바이오센서 표준화 2012
46 방범자재 성능기준 표준화 2012
47 도로교통 시설의 안전ㆍ편의성 향상을 위한 표준화 2012
48 고령자 및 장애인의 기기 활용 편리성 향상 표준화 2012
49 플러그인 하이브리드 전기자동차(PHEV) 연비측정 방법 표준화 2012
50 세제 적정량 사용을 위한 표준 개발 2012

excerpted from 지식경제부 기술표준원

표준기술 - J2EE(Enterprise Edition), J2SE(Standard Edition), J2ME(Micro Edition), 기타 java, javax package
준표준기술 - Library(functional), Framework(architectural)

Layered Architecture Style
1. Presentation Layer
- 표준 : JSP/Servlet
- 준표준 : MVC Framework (Struts + Webwork -> Struts2, Spring MVC)
2. Business Layer
- 표준 : EJB
- 준표준 : Container Framework (Spring Framework)
3. Data Persistence
- 표준 : JDBC
- 준표준 : Data Mapping Framework(iBatis),OR Mapping Framework(Hibernate)

Enterprise System
- 다수의 Request 발생 -> User 증가 -> web(JSP/Servlet)
- 다수의 Transaction 처리 -> Distribute 환경 -> EJB


Servlet/JSP 주요 객체

Class Name
추상화 대상
획득방법
생성/소멸 시점
데이터 공유
HttpServletRequest
client 요청 data service method의 argument 요청 시 생성 응답 시 소멸 하나의 요청이 끝날 때까지 공유
HttpServletReponse
client 응답 data
-
ServletConfig
web.xml의 Init Parameter data (runtime 시 변경되지 않으며 유지보수 시 사용하기 위한 환경설정 getServletConfig() Servlet과 동일
-
ServletContext
Web App 대표 getServletContext() Server 시작/종료 시 생성/소멸 모든 사용자의 모든 요청 시 공유
Cookie
client side 상태 정보값 new Cookie
-
-
HttpSession
server side 상태 정보값 request.getSession() 프로그램에서 제어 현 사용자의 모든 요청 시 공유
RequestDispatcher
다른 JSP/Servlet 실행 목적 context.getRequestDispatcher
-
-

Tools
Ant : XML 형식의 빌드 파일을 이용하여 Source Code 입력 이외 모든 것 자동화
Junit : 자동화된 단위 테스트 구현
Log4j : XML 또는 properties 로그 정책 명시

Custom Tag (Tag Library)
1. Script Tag : <%--, <%, <%=, <%!, <%@
2. Action Tag : <jsp:useBean [ getProperty | setProperty | forward | include...]
3. Custom Tag : 개발자들이 직접 Action tag를 정의, 여러 JSP에서 반복되는 긴 자바코드 or HTML을 Tag로 대체

Tag Comparison
1. <%@ include file="b.jsp" %> : static include (compile 단계), dynamic include에 비해 성능이 아주 약간 더 빠름
2. <jsp:incude page="b.jsp" /> : dynamic include, 변경 시 유지보수 용이, 동일 Web Application 내의 file만 참조 가능 ( ServletContext - RequestDispatcher 이용)
3. <c:import url="b.jsp" /> : dynamic include, 모든 서버 내 file 참조 가능 (Network Program으로 변경)

page redirection
forward 방식 : ServletContext - RequestDispatcher - forward, url 변경이 없으며 새로고침 시 본래 페이지로 이동, 이전 상태 데이터 획득을 위해 Request 객체에 의해 데이터 공유 가능
redirect 방식 : HttpServletResponse - sendRedirect, 브라우저가 현재 페이지의 응답을 client측에 전달하고 다른 페이지로 이동, url 주소 변경 및 새로고침 시 이동한 페이지를 다시 로딩, 이전 상태 데이터 획득을 위해 request객체 대신 Cookie 또는 Session 이용해야 함


1991
The Green Project Begins
MS DOS is the dominant operating system
Cell phones weigh half a pound
"Biosphere 2" project begins
1992
"Oak" is the language
*7 Debuts
"Duke" is featured in the Interface
Johnny Carson signs off "The Tonight Show" on NBC
1993
The Green Project becomes FirstPerson
Mosaic v1.0 is released
"Cheers" ends an 11-year run
1994
WebRunner released — the first browser that supports moving objects and dynamic executable content
The Apple QuickTake 100, the first consumer digital camera, goes on sale for less than $1,000
"Friends" debuts on NBC
1995
Java technology released to a select group on the Web site wicked.neato.org
The San Jose Mercury News runs a front-page article about Java technology
Name changed from "Oak" to "Java"
Announced at Sun World -- Java technology is officially born
1996
The first JavaOne Developer Conference
JDKtm 1.0 software is released
Chess computer Deep Blue defeats Garry Kasparov for the first time
"Dolly" the first cloned sheep is born
1997
Over 220,000 downloads of JDK 1.1 software occur in just three weeks
JavaOne draws 8,000 attendees, becoming the world's largest developer conference
Java Card 2.0 platform is unveiled
43% of U.S. families own a computer
1998
JDK 1.1 release downloads top 2 million
Visa launches world's first smart card based on Java Card technology
The Java Community Process (JCP) program formalized
"Who Wants to Be a Millionaire?" premieres in the U.K
1999
Java 2 platform source code is released
JavaOne draws 20,000
J2EE beta software is released
"Star Wars Episode I: The Phantom Menace" released
2000
Over 400 Java User Groups are established worldwide
Java Developer Connection program tops 1.5 million members
Steve Jobs joins Scott McNealy on stage at JavaOne to announce a major commitment by Apple in support of Java technology
Heavy Metal band Metallica sues Napster for copyright violations
2001
First international JavaOne conference in Yokohama Japan
Over 1 million downloads of the Java Platform, Enterprise Edition (Java EE) SDK
Google Inc. PageRank search algorithm patent awarded
"The Lord of the Rings: The Fellowship of the Ring" is released
2002
J2EE SDK downloads reach 2 million
78% of executives view J2EE technology as the most effective platform for building and deploying Web services
The Euro is introduced
"The Osbournes" becomes a surprise hit on MTV
2003
Java technology runs in almost 550 million desktops
Almost 75% of professional developers use Java programming language as their primary development language
Commercial Voice-Over-Internet (VoiP) phone service begins
"The Da Vinci Code" is published
2004
Java 2 Platform, Standard Edition 5 (Project Tiger) is released
The Java technology-powered Mars Rover (Spirit) touches down on Mars
Sun Java Studio Creator is launched
2005
Java technology celebrates its 10th birthday
Approximately 4.5 million developers use Java technology
Over 2.5 billion Java technology-enabled devices are available
java.com bundles the Google Toolbar with the JRE download
2006
Rich Green announces at the JavaOne 2006 Conference that it's not a matter of when Sun will open source Java technology, but how. The NetBeans IDE 5.0 is released. Sun open-sourced Java EE components as the Glassfish Project to java.net. Java SE and ME initial components are released as open source. Pirates of the Caribbean: Dead Man's Chest is released.

from http://www.java.com/en/javahistory/timeline.jsp