Neha Patil (Editor)

Canigó (framework)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Canigó (framework)

Canigó is the name chosen for the J2EE framework of the Generalitat de Catalunya.

Contents

Purpose and architecture

Canigó is defined as a "common technological framework for development and execution of web applications for corporative systems and departments of the Generalitat de Catalunya". It covers various functionalities:

  • A common architecture for J2EE application building.
  • Supplies a workspace, documentation, support and maintenance of its components.
  • Simplifies the complexity inherent to J2EE, offering a referent framework.
  • Offers a solution in keeping with the de facto standards all over the open source community.
  • Offers an open solution that enables the possibility of adding and exchanging any piece of software with reduced costs.
  • Offers an interconectivity solution with the corporative services of the Generalitat de Catalunya.
  • Canigó's architecture is based on Model–View–Controller. There is an abstraction process that allows the division of the application logics in three main components able to be developed by different rols of a team.

    Actually Canigó's architecture, as a MVC structured framework, is divided in 3 layers and 4 cross-cutting modules:

    Layers
  • Presentation layer
  • Business Logic layer
  • Data Persistence/Integration layers
  • Modules
  • Framework Core
  • Security modules
  • Support module
  • Operation module
  • Canigó's a modular structure gives to developers the option to use only the needed modules to cover project requirements. Those modules are defined through interfaces, isolating them from chosen implementations.

    Canigó is based on a series resources, API's integration (JSF, JPA,...) and open source packages (RichFaces, Spring, Hibernate, ...). It also offers extensions for those packages, adding a wide catalog of reusable components.

    One of the most important architectural basis is the integration between JSF and Spring, taking a big profit of the Spring injection capability to define behaviors and actions.

    The framework consists of the blocks specified below:

    Framework architecture base components

    Canigó3 is an open source framework written for the Java platform. The first version was created by Rod Johnson on October 2002 and the last release version is 3.0.5, published on the last days of October 2010. Canigó3 is designed to help with the configuration of web applications, and also to simplify systems construction in different pieces (easily interchangeable and visible between them), service integration, security services, database connection, transactionality, etc... Spring provides a complete testing system, it's possible to develop unitary tests uncoupling objects from its context making easier the execution of the test cases. The external data access, through Spring, is an easy task because this framework manages the resources by itself. It also has support APIs and it's able to bear the vast majority of Java industry data access technologies like: JDBC, Hibernate, JPA, JDO or iBatis.

    The main basis of Canigó's architecture is a completely integrated group, also modular, of the best practices in Java web applications developing technologies. These are the actual components that constitute the system:

  • JSF as the technology to develop web based Java applications. The main components of this technology are: an API that presents graphical user interface components able to manage their state, controlling events, execute data validation and transformation client and server side, manage navigation between pages, with multi-language capabilities, accessibility, a set of JSP personalised tags able to represent visual components and bind them towards server objects.
  • Spring3 Framework as a centralised object and services container, completely configurable through XML files. Dependency injection allows the configuration of objects out of application's code with a non-intrusive approach. It reduces application's code dedicated to configurations and resources localisation. It also facilitates best practices like programming against interfaces instead of classes, allowing the uncoupling of services and the rapid change of a given implementation for another one. It also allows managing transactions without using specific APIs by the use of Aspect Oriented Programming.
  • JPA provides a persistency model based on POJOs to map the Java relational data bases.
  • AOP (Aspect Oriented Programming) for application's event interception without modifying the source code.
  • Framework core

    This module is the core of the framework, here is where the main features are located:

  • Multi-Environment Configuration: Based on the PropertyPlaceHolder provided by Spring3. With the difference that it allows the existence of environment-dependent properties without any extra beans or properties configuration.
  • Multi-Language (i18n): Its objective is helping in the application development phase by facilitating the support of multiple languages.
  • Trace Service: Based on Log4j. It allows the definition of the tracing level, outputs, minimum trace level, output format, context information.
  • Exception Service: Generates information about any error existence during the execution of a request. Canigó offers a series of exceptions by default (BaseException, CoreException, ...). It also has an exceptions interception mechanism to avoid the excessive use of "try-catch".
  • Security module

    It is the user's authorisation and authentication applications access management system.

  • Security Module: Based on Spring Security 3.0. It's able to manage the authorisation and authentication of applications users.
  • Security Backends: The security service is integrated with GICAR, SACE, LDAP, Data Bases and Inmemory.
  • Presentation (UI) module

    This module is a compound by a group tools designed to simplify and minimise the implementation of the visual presentation layer.

  • JSF: JavaServer Faces is an event oriented technology for Java web applications. Canigó 3 uses the JSF version 1.2, Sun RI implementation specifically.
  • Integration module

    Its goal is providing simple access to the different services offered by the Generalitat de Catalunya.

  • PICA: Provides an integration Java interface to access the 'Plataforma d'Integració i Col·laboració Administrativa' (PICA). This module is able to execute synchronous and asynchronous requests.
  • GECAT: This module has a set of functionalities for invoice management offered by the SAP service of the Gecat.
  • PSIS: It is a digital signatures and digital certificates service offered by the Catcert.
  • SARCAT: Is a series of methods to execute the services offered by S@rcat, through WebServices, FTP/SFTP for planned requests.
  • Documentum: Enables the consumption Documentum functionalities like document filing and retrieving, it is also able to manage folders and metadata.
  • NT: Is a functional connector for the PICA that simplifies the use of telematical notifications of the Generalitat de Catalunya.
  • Antivirus: Is an integration of the CTTI (Information Technologies and Telecommunications Centre) file scanning system of the Generalitat de Catalunya.
  • SAP: It is a simplified interface to access the SAP backend of the Generalitat de Catalunya.
  • Webservices: Canigó 3 does not have a native webservices module. There is a complete documented guide about how to export, publish and consume webservices with Java. Canigó 3 encourages the use of Spring WS, Jaxb and OXM.
  • Queues: Canigó 3 does not have a queue management module. There is a guide about how to generate and consume messages from a queue. The use of Spring JMS is recommended.
  • Persistence module

    This module enables the application with data persistence and retrieval between application and database management systems.

  • JPA: Java Persistence API Unifies the tools for the ORM (Object-Relational Mapping). The default JPA implementation in Canigó 3 is Hibernate.
  • Support module

    This module delivers some additional features to the framework.

  • File Transfers: Enables the server to receive enclosed files in an HTML form.
  • Mail notification: Enables the server to send emails to multiple addresses. It handles plain text and html message content format. It also can enclose multiple files.
  • Task Planner: Based on Spring and Quartz. Enable the option to execute deferred tasks based on predefined time schedule rules.
  • OLE: It can manipulate MS Excel and Word OLE document formats. It enables the possibility to create, read and modify documents. It is based on the POI library.
  • Merging: Document fusion in WordML format. Starting from a tagged document, those variables are exchanged by a group of values defined in a dictionary.
  • SFTP: Enables the file transmission between the server where the application is deployed and other servers through a secured protocol. It is based on JSCH and Commons-VFS libraries.
  • Operations module

    This module adds a feature to applications to generate execution and instrumentation data. This data is ready to be mined and processed by monitoring tools.

  • Instrumentation: Enables the application with the capability to generate instrumentation data (Queries count, errors count, ...), this data comes from the execution of the application.
  • Monitoring: Enables the application to show a screen to get access to the instrumentation module generated data.
  • References

    Canigó (framework) Wikipedia