资 源 简 介
Moved to:
https://github.com/edolganov/knowledge-collector
Intro
Green-forest Framework is the simple IoC Container with Action-Handler architecture. It"s not a competitor for Spring Framework or JEE but it"s a powerful addition for these frameworks. You can use Green-forest for a single class implementation and for a complex business logic.
Motivation
What is the motivation for using Green-forest Framework? The main task is to simplify the code: transfer of one big class (some service implementation) to a set of small classes (handlers).
Code Example
```
//create Green-forest Engine
Engine engine = new Engine();
//register some handler
engine.putHandler(SomeActonHandler.class);
//invoke some action and get result
String result = engine.invoke(new SomeAction("some data"));
//impleme