Mapper

Core Domain
<dependency>
  <groupId>tw.com.softleader.data.jakarta</groupId>
  <artifactId>specification-mapper</artifactId>
  <version>${specification-mapper.version}</version>
</dependency>
requires specification.mapper;
requires jakarta.persistence;
logging:
  level:
    tw.com.softleader.data.jpa.spec: info

Check the latest version on Maven Central

specification-mapper is a generator for Specifications. It reads the fields from an object and dynamically creates query conditions based on the definitions of the fields’ annotations.

In addition, specification-mapper-starter provides integration with Spring Boot, allowing you to use it effortlessly in Spring apps without any configuration. We highly recommend checking it out if you are using a Spring Boot application!


SpecMapper

The entry point for specification operations

Simple Specs

Basic query conditions

Combine Specs

Combine multiple query conditions

Nested Specs

Handle query conditions for nested objects

Join

Filter related entities

Join Fetch

Filter related entities while selecting specific columns

Customize Specs

Extend and customize query conditions

Logging

Object-to-spec conversion process logs

Limitation

Constraints and considerations

Last modified March 24, 2025: docs: add maven central links (963b2f1)