SpecMapper
The entry point for specification operations
<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!
The entry point for specification operations
Basic query conditions
Combine multiple query conditions
Handle query conditions for nested objects
Filter related entities
Filter related entities while selecting specific columns
Extend and customize query conditions
Object-to-spec conversion process logs
Constraints and considerations