Doma is a database access framework for Java with several notable strengths:
- It checks and generates source code at compile time using annotation processing.
- It supports associations between entities.
- It offers a type-safe Criteria API.
- It includes SQL templates, known as “two-way SQL.”
- It runs independently, without relying on any other libraries.
Backers
If you use Doma in your project or enterprise and would like to support ongoing development, please consider becoming a backer. [Become a backer]
Our top backers are shown below!
Supported by
Prerequisite
The latest major version of Doma supports Java 17 and above. If you are using Java 8, please use Doma 2.
See also Major versions.
Supported databases
We are testing against the following databases:
| Database | version | status |
|---|---|---|
| H2 Database | 2.4.240 | stable |
| MySQL v5 | 5.7 | stable |
| MySQL v8 | 8.0.36 | stable |
| Oracle Database XE | 21c | stable |
| PostgreSQL | 12.20 | stable |
| SQLite | 3.50.3.0 | stable |
| SQL Server | 2019 | stable |
Examples
Type-safe Criteria API
This code uses a type-safe Criteria API to fetch employees from a specific department while establishing associations between the related entities:
var queryDsl = new QueryDsl(config); var e = new Employee_(); var d = new Department_(); var employees = queryDsl .from(e) .innerJoin(d, on -> on.eq(e.departmentId, d.departmentId)) .where(c -> c.eq(d.departmentName, "SALES")) .associate(e, d, (employee, department) -> { employee.setDepartment(department); department.getEmployeeList().add(employee); }) .fetch();
See Unified Criteria API for more information.
SQL templates
This code uses an SQL template to fetch employees from a specific department while establishing associations between the related entities:
@Dao public interface EmployeeDao { @Sql( """ select /*%expand*/* from EMPLOYEE e inner join DEPARTMENT d on e.departmentId = d.departmentId where /*%if departmentName != null*/ d.DEPARTMENT_NAME = /*departmentName*/'test' /*%end*/ """) @Select(aggregateStrategy = EmployeeStrategy.class) List<Employee> selectByDepartmentName(String departmentName); @AggregateStrategy(root = Employee.class, tableAlias = "e") interface EmployeeStrategy { @AssociationLinker(propertyPath = "department", tableAlias = "d") BiFunction<Employee, Department, Employee> department = (e, d) -> { e.setDepartment(d); d.getEmployees().add(e); return e; }; } }
See SQL templates and Aggregate strategies for more information.
More Examples
Try Getting started and simple-examples.
Installing
Gradle
For Java projects:
plugins {
id("org.domaframework.doma.compile") version "4.0.3"
}
dependencies {
implementation("org.seasar.doma:doma-core:3.11.1")
annotationProcessor("org.seasar.doma:doma-processor:3.11.1")
}For Kotlin projects, use doma-kotlin instead of doma-core and use kapt in place of annotationProcessor:
plugins {
id("org.domaframework.doma.compile") version "4.0.3"
}
dependencies {
implementation("org.seasar.doma:doma-kotlin:3.11.1")
kapt("org.seasar.doma:doma-processor:3.11.1")
}Maven
We recommend using Gradle, but if you want to use Maven, see below.
For Java projects:
... <properties> <doma.version>3.11.1</doma.version> </properties> ... <dependencies> <dependency> <groupId>org.seasar.doma</groupId> <artifactId>doma-core</artifactId> <version>${doma.version}</version> </dependency> </dependencies> ... <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>17</source> <!-- depending on your project --> <target>17</target> <!-- depending on your project --> <annotationProcessorPaths> <path> <groupId>org.seasar.doma</groupId> <artifactId>doma-processor</artifactId> <version>${doma.version}</version> </path> </annotationProcessorPaths> <compilerArgs> <!-- if you are using a Maven project in Eclipse, this argument is required --> <arg>-Adoma.resources.dir=${project.basedir}/src/main/resources</arg> </compilerArgs> </configuration> </plugin> </plugins> </build>
For Kotlin projects, see Kotlin document.
Documentation
Chatroom
https://domaframework.zulipchat.com
Related projects
- quarkus-doma - Supports integration with Quarkus
- doma-spring-boot - Supports integration with Spring Boot
- doma-compile-plugin - Makes compilation easy
- doma-codegen-plugin - Generates Java and SQL files
Major versions
Status and Repository
| Version | Status | Repository | Branch |
|---|---|---|---|
| Doma 1 | limited-support | https://github.com/seasarorg/doma/ | master |
| Doma 2 | limited-support | https://github.com/domaframework/doma/ | 2.x |
| Doma 3 | stable | https://github.com/domaframework/doma/ | master |
Compatibility matrix
| Doma 1 | Doma 2 | Doma 3 | |
|---|---|---|---|
| Java 6 | v | ||
| Java 7 | v | ||
| Java 8 | v | v | |
| Java 9 | v | ||
| Java 10 | v | ||
| Java 11 | v | ||
| Java 12 | v | ||
| Java 13 | v | ||
| Java 14 | v | ||
| Java 15 | v | ||
| Java 16 | v | ||
| Java 17 | v | v | |
| Java 18 | v | v | |
| Java 19 | v | v | |
| Java 20 | v | v | |
| Java 21 | v | v | |
| Java 22 | v | v | |
| Java 23 | v | ||
| Java 24 | v | ||
| Java 25 | v |