Doma is a database access framework for Java. Doma has various strengths:
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.
We are testing against the following databases:
Database | version | status |
---|---|---|
H2 Database | 2.3.x | stable |
MySQL v5 | 5.7 | stable |
MySQL v8 | 8.0.36 | stable |
Oracle Database XE | 21c | stable |
PostgreSQL | 12.20 | stable |
SQL Server | 2019 | stable |
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.
@Dao
public interface EmployeeDao {
@Sql(
"""
select * from EMPLOYEE where
/*%if salary != null*/
SALARY >= /*salary*/9999
/*%end*/
""")
@Select
List<Employee> selectBySalary(BigDecimal salary);
}
See SQL templates for more information.
Try Getting started and simple-examples.
For Java projects:
plugins {
id("org.domaframework.doma.compile") version "3.0.1"
}
dependencies {
implementation("org.seasar.doma:doma-core:3.1.0")
annotationProcessor("org.seasar.doma:doma-processor:3.1.0")
}
For Kotlin projects, use doma-kotlin instead of doma-core and use kapt in place of annotationProcessor:
plugins {
id("org.domaframework.doma.compile") version "3.0.1"
}
dependencies {
implementation("org.seasar.doma:doma-kotlin:3.1.0")
kapt("org.seasar.doma:doma-processor:3.1.0")
}
We recommend using Gradle, but if you want to use Maven, see below.
For Java projects:
...
<properties>
<doma.version>3.1.0</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.
https://domaframework.zulipchat.com
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 |
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 |
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!