블로그 이미지
News and Announcements (at) Apache Software Foundation. 노안돼지
Apache Software Foundation The Apache User Group KLDP From download

Recent Post»

Recent Comment»

Recent Trackback»

Archive»

« 2025/5 »
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 31

아파치 소프트웨어 재단은 아파치 오픈 소스 소프트웨어 프로젝트 커뮤니티 지원을 제공합니다.
아파치 프로젝트는 협업과 개발 프로세스를 기반으로 하는 상호간의 공감대와 개방되어 있는 실용적인 소프트웨어 라이센스, 그 분야에서 선두를 달릴 수 있는 고품질 소프트웨어 개발을 추구하고 있습니다.

우리는 심플한 서버 공유 프로젝트의 모임이라고도 하지만 오히려 개발자와 사용자간의 커뮤니티라고 생각합니다.

Apache Cocoon 3.0.0-alpha-1 Released

뉴스/소식 | 2009. 1. 25. 11:21 | Posted by 노안돼지

아파치 Cocoon 커뮤니티에서 Cocoon 3.0.0-alpha-1을 릴리즈했음을 발표했습니다.

Apache Cocoon 3은 Cocoon 2.2을 대폭으로 수정하여 재작성(major rewrite)하였습니다.
이는 Cocoon 2를 기반으로 하고 파이프라인 컨셉, 사이트맵과 Cocoon 2.2와 많은 점에서 매우 유사하며, 슬림화되었으며 어떠한 Java환경에서도 쉽게 사용할 수 있도록 디자인되었습니다.

여기에 SAX components를 사용하는 pipeline 예제가 있습니다.

   Pipeline pipeline = new NonCachingPipeline();
   pipeline.addComponent(new StringGenerator("<x></x>"));
   pipeline.addComponent(new XSLTTransformer(
       this.getClass().getResource("/test1.xslt")));
   pipeline.addComponent(new XSLTTransformer(
       this.getClass().getResource("/test2.xslt")));
   pipeline.addComponent(new XMLSerializer());

   pipeline.setup(System.out);
   pipeline.execute();


 On top of this, Cocoon 3 has the goal to become an integration
 platform for RESTful webservices and web applications.

 There are several Maven 2 archetypes available that help you to get
 started. Find a list and usage instructions at
 http://cocoon.apache.org/3.0/download.html

 The release artifacts are available from the central Maven repository
 (http://repo1.maven.org/maven2/) or you can download them from the
 distribution area (http://cocoon.apache.org/3.0/download.html).

 More information about Cocoon 3 is available at
 http://cocoon.apache.org/3.0/


아파치 Cocoon 프로젝트

--
Reinhard Pötz                           Managing Director, {Indoqa} GmbH
                        http://www.indoqa.com/en/people/reinhard.poetz/

Member of the Apache Software Foundation
Apache Cocoon Committer, PMC member                  reinhard@apache.org

: