The Unbearable Lightness of Java

Quickstart

Jodd Quickstart is pre-configured and ready to be used bundle. It's an empty web application with all Jodd frameworks set.

1. Download and unpack

Go to download page and download quickstart archive.

Upack it somewhere.

2. Create project in your IDE

If you use IntelliJ IDEA then just open the project file.

Otherwise, create a new project in your IDE and import existing sources to match the following structure:

3. Steady, ready... Code!

And you are ready to experience Jodd :)

Add service

Services are located in service package. Each service class is Petite bean; just a POJO class annotated with @PetiteBean.

Add action

Web actions are located in actions package, as Madvoc actions. To inject a service in the action, just inject Petite bean in Madvoc action.

Add JSP page

Add JSP pages to render outjected Madvoc values.

Configure

Configure Jodd frameworks through props files. Or do that in java, in AppMadvocConfig and AppCore.