Expression Specification For Spring Data JPA

Implementation of Spring Data JPA Specification based on QueryDecoder project.

License

License

GNU General Public License v3.0
Categories

Categories

Data
GroupId

GroupId

com.github.paulosalonso
ArtifactId

ArtifactId

expression-specification-for-spring-data-jpa
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

Expression Specification For Spring Data JPA
Implementation of Spring Data JPA Specification based on QueryDecoder project.
Project URL

Project URL

https://github.com/paulosalonso/expression-specification-for-spring-data-jpa
Source Code Management

Source Code Management

https://github.com/paulosalonso/expression-specification-for-spring-data-jpa.git

Download expression-specification-for-spring-data-jpa

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.paulosalonso/expression-specification-for-spring-data-jpa/ -->
<dependency>
    <groupId>com.github.paulosalonso</groupId>
    <artifactId>expression-specification-for-spring-data-jpa</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.paulosalonso/expression-specification-for-spring-data-jpa/
implementation 'com.github.paulosalonso:expression-specification-for-spring-data-jpa:1.0.0'
// https://jarcasting.com/artifacts/com.github.paulosalonso/expression-specification-for-spring-data-jpa/
implementation ("com.github.paulosalonso:expression-specification-for-spring-data-jpa:1.0.0")
'com.github.paulosalonso:expression-specification-for-spring-data-jpa:jar:1.0.0'
<dependency org="com.github.paulosalonso" name="expression-specification-for-spring-data-jpa" rev="1.0.0">
  <artifact name="expression-specification-for-spring-data-jpa" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.paulosalonso', module='expression-specification-for-spring-data-jpa', version='1.0.0')
)
libraryDependencies += "com.github.paulosalonso" % "expression-specification-for-spring-data-jpa" % "1.0.0"
[com.github.paulosalonso/expression-specification-for-spring-data-jpa "1.0.0"]

Dependencies

compile (3)

Group / Artifact Type Version
org.springframework.data : spring-data-jpa jar
javax.persistence : javax.persistence-api jar 2.2
com.github.paulosalonso : querydecoder jar 2.0.0

Project Modules

There are no modules declared in this project.

Expression Specification for Spring Data JPA

Implementation of Spring Data JPA Specification based on QueryDecoder project.

Usage example

In this example, the repository returns all persons where name contains "Paulo".

Specification<Person> spec = ExpressionSpecification.of("name[CT]:Paulo");

personRepository.findAll(spec);

Versions

Version
1.0.0