Skip to content

shaoweijin/jodd

This branch is 3254 commits behind oblac/jodd:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7b7fbe7 · Dec 3, 2013
Oct 4, 2013
Nov 27, 2013
Nov 26, 2013
Nov 14, 2013
Nov 21, 2013
Dec 2, 2013
Dec 3, 2013
Oct 25, 2013
Nov 21, 2013
Nov 21, 2013
Nov 27, 2013
Dec 3, 2013
Nov 27, 2013
Nov 7, 2013
Dec 2, 2013
Nov 2, 2013
Dec 2, 2013
Feb 24, 2013
Nov 23, 2013
Nov 21, 2013
May 17, 2013
Nov 4, 2013
Nov 4, 2013
Jul 20, 2013
Jan 20, 2013
Nov 5, 2013
Dec 3, 2013
May 6, 2009
Apr 25, 2013
Feb 4, 2013
Feb 6, 2013
Feb 4, 2013

Repository files navigation

Jodd

Bitdeli Badge Build Status

Jodd is set of open-source Java tools and micro frameworks; compact, yet powerful.

Jodd = tools + ioc + mvc + db + aop + tx + html < 1.3M

Read about Jodd:

Jodd Modules

Jodd is split into many modules, so choose what to use. Some tools and utility modules are:

  • jodd-core contains many utilities, including JDateTime and Convert.
  • jodd-bean, our infamous BeanUtil.
  • jodd-props is the super-replacement for Java Properties.
  • jodd-email for easier email sending.
  • jodd-upload, handles HTTP uploads.
  • jodd-servlet with many servlet utilities, including nice tag library.
  • jodd-http, tiny HTTP client.

and some micro frameworks:

  • jodd-madvoc - slick MVC framework.
  • jodd-petite - pragmatic DI container.
  • jodd-lagarto - HTML parser with Jerry and CSSelly.
  • jodd-lagarto-web - Lagarto addon for web: Decora, HtmlStapler and more.
  • jodd-proxetta - dynamic proxies and Paramo.
  • jodd-db - thin database layer and object mapper.
  • jodd-vtor - validation framework.

Read more in our official documentation.

Jodd Bundle

If you are already using many Jodd jars, you can simply just use the bundle jar. It's a single jar that bind all modules:)

Building Jodd from source

Jodd uses Gradle build system. Good thing is that you don't have to install anything; the only prerequisites are Git and Java JDK.

Check out sources

git clone https://github.com/oblac/jodd.git jodd

Compile and test, build jars

gradlew build

Build full release with reports

gradlew release

Install Jodd into your local Maven

gradlew install

Contributing

Feel free to contribute! Follow these steps:

First time only:

  • fork the Jodd repo (upstream) to your GitHub account (origin).
  • clone origin as your local repo

Every other time:

  • update both origin and local repos from upstream
  • create new branch for a feature or bug fix
  • commit often :)
  • once when work is done, push local changes to your origin
  • send us a pull request (PR)

We will pickup up from there:)

❤️🍅