Java EE 5 is Not Your Father’s J2EE 자바 컴퓨터 공학부 5가 없다 아버지의 J2 쥶 E
Java Platform Enterprise Edition (Java EE, formerly referred to as J2EE) Version 5 has arrived. 자바 플랫폼 엔터 프라이즈 버전 (자바 컴퓨터 공학부, 이전이라 불리우는 J2 쥶 E) 버전 5가 도착합니다. Its streamlined features offer added convenience, improved performance, and reduced development time, all of which enable developers to bring products to market faster. 의 간소화된 기능을 제공 추가 편의성, 향상된 성능, 그리고 개발 시간이 단축, 모든 개발자가 가지고 제품을 시장의 빠른 활성화합니다. In short this is how J2EE should have been from start. 요컨대 이것은 J2 쥶 E 했어야하는 방법을 처음부터합니다. Java EE specification lead Bill Shannon, a Distinguished Engineer at Sun Microsystems gives an update. 자바 컴퓨터 공학부 스펙 리드 빌 섀넌, 저명한 기술자 태양 마이크로 제공하는 업데이 트합니다.
Most of us (java developers) stayed away from J2ee, unless forced to use it due to true enterprise class requiremements of the application or management pressure, due to its tremendous complexity. 대부분의 사람 (자바 개발자)에서 멀리 떨어져 J2 쥶 E, 강제로 사용하지 않는 한 진정한 엔터 프라이 즈급 requiremements의 응용 프로그램으로 인해 또는 경영 압박으로 인해 그 엄청난 복잡합니다. Java EE 5 is set to change all that. 자바 컴퓨터 공학부 5가 모든 것을 설정을 변경합니다. Let’s start with developing a simple web service. 간단한 웹 서비스를 개발하는부터 시작하자. Here is the complete source code for a simple (Hello World) web service: 여기가 바로 전체의 소스 코드를 단순 (여러분, 안녕하세요) 웹 서비스 :
package endpoint; import javax.jws.WebService; @WebService public class Hello { public String sayHello(String param) { return "Hello " + param; } } 패키지를 종점; 수입 javax.jws.webservice; @ 웹 서비스 공용 클래스 안녕하세요, (공용 문자열을 sayhello (문자열 param) (반환 "안녕하세요"+ param;)) Read his interview 그의 인터뷰를 읽고 here 여기에 . 합니다.
Filed under 밑에 Headline News 헤드 라인 뉴스 , Java Software 자바 소프트웨어 , Tech Note 기술 참고 사항 , Web 웹 , Web Services 웹 서비스 | |
| |
RSS 2.0 rss 2.0 | |
Trackback 트랙백 this Article | 이 문서 |
Email this Article 전자 우편이 문서
You may also like to read 같은를 읽을 수있습니다 |



