Aranea framework 1.0.3 review

Download
by rbytes.net on

Aranea is an Open Source Java Hierarchical Model-View-Controller Web Framework that provides a common simple approach to building the

License: The Apache License 2.0
File size: 0K
Developer: Aranea Team
0 stars award from rbytes.net

Aranea is an Open Source Java Hierarchical Model-View-Controller Web Framework that provides a common simple approach to building the web application components, reusing custom or general GUI logic and extending the framework.

The framework enforces programming using Object-Oriented techniques with POJOs and provides a JSP tag library that facilitates programming web GUIs without writing HTML.

Here are some key features of "Aranea framework":
Small core. Aranea core consists of ca. 10 interfaces, some conventions concerning how to use them and a number of default or base implementations.
Component-oriented. In Aranea everything is a component and everything is reusable, the framework itself is assembled from a number of components with specific responsibilities. The framework itself is assembled from a number of components with specific responsibilities and programmer also writes the code in terms of components. The components have very simple interface which has about 4-6 methods.
Event-driven. The whole programming model is based on components reacting to events generated by the user. One typically doesn't have to deal with request or determine what button was pressed since the event handler just calls the appropriate listener or method.
Plain Old Java. The components in Aranea are pure Java objects supporting polymorphism, inheritance and encapsulation.
Explicit state management. Aranea component fields are persistent and framework will automatically determine component lifecycle without limiting to any scopes.
Powerful navigation. Aranea out-of-the-box supports the so called flows and flow nesting, which allows to create nested processes that preserve the previous process state and restore it when finished.
Type safe. Since there is no playing around with session attributes and no XML mappings the Java compiler is able to verify that all types and classes match and navigating between components is as easy as holding Ctrl and clicking.
Secure. Since components are created explicitly when needed and removed when they are needed no more there is no need to protect the controller URLs with roles or privileges.
Testable. Testing pure Java is as easy as it sounds, and there is no need for any J2EE containers. And since Aranea can be used with Dependency Injection containers like Spring, it makes testing even easier.
AJAX-ready. Aranea supports natively both partial page updates and AJAX-enabled components like autocompletion search boxes. Aranea can also be used as a controller for a purely AJAX application.

Aranea framework 1.0.3 keywords