DRY and KISS
One of the most impressing movements in the modern Java Enterprise development is that many developers realized that they really should adhere to some very simple philosophies:
- DRY:
Don't Repeat Yourself (DRY, also known as Once and Only Once or Single Point of Truth (SPOT)) is a process philosophy aimed at reducing duplication, particularly in computing.
The philosophy emphasizes that information should not be duplicated, because duplication increases the difficulty of change, may decrease clarity, and leads to opportunities for inconsistency.
DRY is a core principle of Andy Hunt and Dave Thomas's book The Pragmatic Programmer.
- KISS:
KISS principle is a colloquial name for the empirical principle that simplicity is an essential asset and goal in systems and (industrial) processes.
It is popular in software, animation and engineering in general.
Maybe that is the reason why Spring got so many users, any maybe that is the reason why Java EE 5 is much more easier then J2EE. And there are so many new projects using maven2, maybe because at the end it is simplier then ant buildfiles.
Where is Antidoto applying DRY?
It is quite easy not to duplicate code. Common classes and interfaces are moved into common libraries. With a good documentation and a central repository this code gets reused.
When building a system from smaller pieces, it unfortunately leads to configuration duplication. Mostly because technologies did not foresee this kind of development, and furthermore because developers don't take the time to solve this issues.
A good example here is the log4j configuration. How many console appenders do we need to define until we try to centralize this configuration? All what modules need is to define their runtime logging configuration for categories. Log4J offers the API to do it. The same applies to hibernate, JSF and Facelets: their configuration is monolithic.
This is in fact where the poisoning of architectures is happening. Development is modular, modules (Antidoto calls them subsystems) are testable and reusable, but configuration is spread all over the different projects.
Where is Antidoto applying KISS?
Not every project needs a OSGi framework (different classloaders, ugly manifest files), and not every projects wants to remote every single module.
But then, how to develop in modules but deploy monolithic artifacts?
Antidoto is a small OSGi without all the hassles of full blown plugin and SOA architectures - Antidoto keeps it as simple and sweet as possible!