A set of libraries to help developers implement domain models in distraction-free, plain old Java.
-
Explicitly express architectural concepts for easier code reading and writing.
-
Keep domain-specific code free from technical dependencies. Reduce boilerplate code.
-
Automatically generate documentation and validate implementation structures and your architecture.
-
Make developers life easier.
-
Express that a piece of code (a package, class, or method) implements an architectural concept.
-
Make it easy for the human reader to determine what kind of architectural concepts a given piece of code is.
-
Allow tool integration:
-
Augmentation of the code. (Tooling examples: ByteBuddy with Spring and JPA integrations).
-
Check for architectural rules. (Tooling examples: jQAssistant, ArchUnit).
-
Example: A banking domain.
import org.jmolecules.ddd.annotation.*;
@Entity
class BankAccount {
@Identity
final IBAN iban;
/* ... */
}
@ValueObject
class IBAN { /* ... */ }
@ValueObject
record Currency { /* ... */ }
@Repository
class Accounts { /* ... */ }
When we take Ubiquitous Language serious, we want names (for classes, methods, etc.) that only contain words from the domain language.
That means the titles of the building blocks should not be part of the names.
So in a banking domain we don’t want BankAccountEntity
, CurrencyVO
or even AccountRepository
as types.
Instead, we want BankAccount
, Currency
and Accounts
– like in the example above.
Still, we want to express that a given class (or other architectural element) is a special building block; i.e. uses a design pattern. jMolecules provide a set of standard annotations for the building blocks known from DDD.
As an alternative to the above mentioned annotations, jMolecules also provides a set of interfaces, largely based on the ideas presented in John Sullivan’s series "Advancing Enterprise DDD". They allow expressing relationships between the building blocks right within the type system, so that the compiler can help to verify model correctness and the information can also be processed by Java reflection more easily.
-
Identifier
— A type to represent types that are supposed to act as identifiers. -
Identifiable<ID>
— Anything that’s exposing an identifier. -
Entity<T extends AggregateRoot<T, ?>, ID> extends Identifiable<ID>
— An entity, declaring to whichAggregateRoot
it belongs and which identifier it exposes. -
AggregateRoot<T extends AggregateRoot<T, ID>, ID extends Identifier> extends Entity<T, ID>
— an aggregate root being anEntity
belonging to itself exposing a dedicatedIdentifier
-
Association<T extends AggregateRoot<T, ID>, ID extends Identifier> extends Identifiable<ID>
— an explicit association to a targetAggregateRoot
.
This arrangement gives guidance to modeling and allows to easily verify the following rules, potentially via reflection:
-
Enforced, dedicated identifier types per aggregate to avoid identifiers for different aggregates mixed up.
-
AggregateRoot
must only refer toEntity
instances that were declared to belong to it. -
AggregateRoot
s andEntity
s must only refer to otherAggregateRoots
viaAssociation
instances.
For automated verification and runtime technology integration see jMolecules Integrations.
-
jmolecules-ddd
— annotations and interfaces to express DDD building blocks (value objects, entities, aggregate roots etc.) in code. -
jmolecules-events
— annotations and interfaces to express the concept of events in code. -
kmolecules-ddd
— Kotlin-based flavor ofjmolecules-ddd
to mitigate Kotlin/Java interop issues for the type based model.
jMolecules provides annotations to describe higher-level architectural concepts following the styles of Layered, Onion, and Hexagonal Architectures.
They allow you to mark an entire package as a layer, ring, or one containing ports and adapters.
These would appear in the package-info.java
file for each package that you want to annotate, e.g.:
package-info.java
for Domain layer:@DomainLayer
package org.acmebank.domain;
import org.jmolecules.architecture.layered.*;
package-info.java
for Application layer:@ApplicationLayer
package org.acmebank.application;
import org.jmolecules.architecture.layered.*;
That way, all classes in the respective package are considered to be part of the annotated layer, ring, or considered a port / adapter.
Alternatively, classes can be annotated directly:
import org.jmolecules.architecture.layered.*;
@DomainLayer
@Entity
public class BankAccount { /* ... */ }
@ApplicationLayer
@Service
public class TransferMoney { /* ... */ }
Currently, annotations for Layered, Onion, and Hexagonal Architecture exist.
-
jmolecules-architecture
— annotations to express architectural styles in code.-
jmolecules-cqrs-architecture
— CQRS architecture-
@Command
-
@CommandDispatcher
-
@CommandHandler
-
@QueryModel
-
-
jmolecules-layered-architecture
— Layered architecture-
@DomainLayer
-
@ApplicationLayer
-
@InfrastructureLayer
-
@InterfaceLayer
-
-
jmolecules-onion-architecture
— Onion architecture-
Classic
-
@DomainModelRing
-
@DomainServiceRing
-
@ApplicationServiceRing
-
@InfrastructureRing
-
-
Simplified (does not separate domain model and services)
-
@DomainRing
-
@ApplicationRing
-
@InfrastructureRing
-
-
-
jmolecules-hexagonal-architecture
— Hexagonal architecture-
@Application
-
@(Primary|Secondary)Adapter
-
@(Primary|Secondary)Port
-
-
The jMolecules annotations and interfaces can be used to generate technical code needed to express the concept in a certain target technology.
-
Spring, Data JPA, Data MongoDB, Data JDBC, and Jackson integration — to make code using jMolecules annotations work out of the box in those technologies.
The jMolecules concepts expressed in code can be used to verify rules that stem from the concepts' definitions and generate documentation.
-
jQAssistant plugin — to verify rules applying to the different architectural styles, DDD building blocks, CQRS and events. Also creates PlantUML diagrams from the information available in the codebase.
-
ArchUnit rules — allow to verify relationships between DDD building blocks.
-
Spring Modulith — supports detection of jMolecules components, DDD building blocks and events for module model and documentation purposes (see the Spring Modulith documentation for more information).
To use jMolecules in your project just declare a dependency to it.
Release binaries are available from the Maven central repository.
To avoid having to declare all versions explicitly, we recommend using the jmolecules-bom
in your dependency management section.
<dependency>
<groupId>org.jmolecules</groupId>
<artifactId>jmolecules-ddd</artifactId>
<version>1.9.0</version>
</dependency>