» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with 334 + 136

Apache Cocoon

Apache Cocoon is a Spring-based (since version 2.2) framework built around the concepts of separation of concerns and component-based development. Cocoon implements these concepts around the notion of component pipelines, each component on the pipeline specializing on a particular operation. This makes it possible to use a Lego(tm)-like approach in building web solutions, hooking together components into pipelines, often without any required programming. Cocoon used as web framework is "web glue for your web application development needs". It is a glue that keeps concerns separate and allows parallel evolution of all aspects of a web application, improving development pace and reducing the chance of conflicts. In particular it makes it easy to support multiple output formats, offers continuation based web controller implementations and comes with a JSR-168 compatible Portal implementation. Cocoon blocks A block is the unit of modularization (in comparison: Eclipse uses the term plugins, OSGi bundles) in Cocoon. Everything that goes beyond what Cocoon provides in its core modules (Spring integration, sitemap and pipeline implementation) is provided as block. Custom Cocoon applications are also developed as blocks. A block can provide the following features: * general servlet services (any servlet can be managed by the Cocoon servlet-service framework), * special services that provide pipelines as services, * component services (Spring beans, Avalon services/components), * a container for classes and resources. A block is packaged as a Java archive (jar) following certain conventions concerning the directory structure. General features * Apache Cocoon is a Spring-based (since version 2.2) framework built around the concepts of separation of concerns and component-based development, ensuring that people can interact and collaborate on a project without stepping on each other toes. * Cocoon implements these concepts around the notion of component pipelines, each component on the pipeline specializing in a particular operation (usual pipeline uses a Generator, Transformers and a Serializer). This makes it possible to use a Lego(tm)-like approach in building web solutions, hooking together components into pipelines without requiring programming. * Advanced Control Flow: continuation-based page flow hides the complexity of request/response processing and is cleanly separated from the view and data components. * Cocoon is open source software (based on the Apache License 2.0). * Cocoon does not duplicate efforts but tightly integrates many technologies. * Cocoon is in use at many live sites and on many company networks. * Cocoon has a strong community, with many active developers and more than plenty of active committers! * There is free support from the thousands of people on our mailing lists and commercial support is available from various companies and consultants. * There are many Cocoon sessions at different conferences: o Cocoon GetTogether o ApacheCon o Austrian Cocoon Day o WJAX o JAX Usage scenarios As you would expect, all of these scenarios can be combined. * Dynamic multi-channel web publishing (see below for the possible datasources and output formats) * Create static content (automatically) by separating data from view * Offline generation modes with Cocoon's own offline facilities: command-line interface (CLI), ant task, bean. Also with Apache Forrest which utilises Cocoon. * Dynamic document preparation with Apache Forrest, the 'forrest run' mode. Use many different data input formats, see the transformed result immediately in the browser. * Advanced web applications with J2EE integration (with separation of your data, the view and the flow logic --> this really means you can change one of the parts without touching another) * Develop your company portal using the Cocoon Portal framework * Support multiple clients, layouts and languages (i18n) without code duplication * Integrate Cocoon with your existing web applications or use it to put a better face on them (page scraping) * Add full-text search to any datasource that can be converted to XML (see below) * Use Cocoon as the base for Enterprise Application Integration (EAI) * Use Cocoon as the base for your Content Management System (CMS) (see Apache Lenya, Daisy CMS and Hippo CMS) * Use Cocoon for producing mobile content (mobile phones, PDAs) * Datawarehouse reporting across multiple formats (see xReporter) Apache Cocoon Home Page http://cocoon.apache.org/ Download Apache Cocoon http://cocoon.apache.org/mirror.cgi

Java: Open Source Java(OpenJDK)