----- Index ----- ----- 2009 ----- Apache Cocoon 3 Apache Cocoon 3 is a major rewrite of Cocoon 2.2. Like Cocoon 2 it is based around the concept of pipelines and sitemaps and it is very similar to Cocoon 2.2 in many respects but is slimed down and designed to be <> (= no frameworks required!). On top of this, Cocoon 3 has the goal of becoming the best available platform for <> and web applications. * Download Apache Cocoon 3.0.0-alpha-2 is available for {{{download.html} download}}. Please read our {{{alpha-warning.html} alpha software warning}} message before using it. * Using Pipelines in Java has never been so easy Here is an example that transforms an XML document by reading it from an URL, will be processed including linked documents following the recommendation, then will be transformed applying a stylesheet, validated against an XSchema, and finally serialized: +------------------------------------------+ URL base = this.getClass().getResource("http://com.acme/"); Pipeline pipeline = new NonCachingPipeline(); pipeline.addComponent(new XMLGenerator(new URL(base, "feed.xml"))); pipeline.addComponent(new XIncludeTransformer(base)); pipeline.addComponent(new XSLTTransformer(this.getClass().getResource("/trax.xslt"))); pipeline.addComponent(new SchemaProcessorTransformer(this.getClass().getResource("/validate.xsd"))); pipeline.addComponent(new XMLSerializer()); ByteArrayOutputStream baos = new ByteArrayOutputStream(); pipeline.setup(baos); pipeline.execute(); +------------------------------------------+ The idea behind using a pipeline for this purpose is that the content of the pipeline (in this case SAX events) is streamed without any necessary serialization or deserialization steps the components. * Sitemaps and integration with Java Servlets But there is more that Cocoon 3 offers. See our {{{features.html} features}} list.