se.oyabun.criters:criters-reactor

Criters engine is a framework for automating searches using JPA.

Лицензия

Лицензия

Категории

Категории

React Взаимодействие с пользователем Веб-фреймворки Reactor Контейнер Микросервисы Reactive libraries
Группа

Группа

se.oyabun.criters
Идентификатор

Идентификатор

criters-reactor
Последняя версия

Последняя версия

1.0.1
Дата

Дата

Тип

Тип

pom
Описание

Описание

se.oyabun.criters:criters-reactor
Criters engine is a framework for automating searches using JPA.
Ссылка на сайт

Ссылка на сайт

https://github.com/OyabunAB/criters/
Организация-разработчик

Организация-разработчик

Oyabun AB
Система контроля версий

Система контроля версий

https://github.com/OyabunAB/criters/

Скачать criters-reactor

Имя Файла Размер
criters-reactor-1.0.1.pom 13 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/se.oyabun.criters/criters-reactor/ -->
<dependency>
    <groupId>se.oyabun.criters</groupId>
    <artifactId>criters-reactor</artifactId>
    <version>1.0.1</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/se.oyabun.criters/criters-reactor/
implementation 'se.oyabun.criters:criters-reactor:1.0.1'
// https://jarcasting.com/artifacts/se.oyabun.criters/criters-reactor/
implementation ("se.oyabun.criters:criters-reactor:1.0.1")
'se.oyabun.criters:criters-reactor:pom:1.0.1'
<dependency org="se.oyabun.criters" name="criters-reactor" rev="1.0.1">
  <artifact name="criters-reactor" type="pom" />
</dependency>
@Grapes(
@Grab(group='se.oyabun.criters', module='criters-reactor', version='1.0.1')
)
libraryDependencies += "se.oyabun.criters" % "criters-reactor" % "1.0.1"
[se.oyabun.criters/criters-reactor "1.0.1"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

  • criters-annotation
  • criters-engine
  • criters-test-core
  • criters-test-core-jpa
  • criters-test-hibernate
  • criters-test-eclipselink
  • criters-spring-data-jpa
---------------------------------------------------------------------------------------------------
     .aMMMb  dMMMMb  dMP dMMMMMMP dMMMMMP dMMMMb  .dMMMb
    dMP"VMP dMP.dMP amr    dMP   dMP     dMP.dMP dMP" VP
   dMP     dMMMM.  dMP    dMP   dMMMP   dMMMMK   VMMMb
  dMP.aMP dMP AMF dMP    dMP   dMP     dMP AMF dP .dMP
  VMMMP" dMP dMP dMP    dMP   dMMMMMP dMP dMP  VMMMP"
--------------------------------------------------------------------------------------------------- 

Criters Criteria Automation Engine Build Status Maven Central

Configuration

Search filter configuration

<dependency>
    <groupId>se.oyabun.criters</groupId>
    <artifactId>criters-annotation</artifactId>
    <version>${criters-annotation.version}</version>
</dependency>

Annotate your filter objects with the criters filter annotations.

    //
    // Make your object extend Filter<?> for the type of entity you want to find. 
    //
    public class FooFilter extends Filter<Foo> {
        //
        // Use direct parameter restrictions on the entity
        //
        @Parameter(name ="value",
                   restriction = Restriction.EQUALS)
        public Integer getValue() { return 0; }
        //
        // or via a relational property restriction
        //
        @Relations({
            @Relation(name="bars",
                      iterable = true,
                      parameters = {
                @Parameter(name = "id",
                           restriction = Restriction.EQUALS)
            })
        })
        public long getBarId() { return 0L; }
    }

Engine configuration

<dependency>
    <groupId>se.oyabun.criters</groupId>
    <artifactId>criters-engine</artifactId>
    <version>${criters-engine.version}</version>
</dependency>

Use the convenient Criters factory builder to instantiate your criters factory. You then need to configure the factory to use an entity manager or a root, criteria query and criteria builder.

    //
    // Either configure an entity manager
    //
    Criters.<Foo, Filter<Foo>> factory().use(entityManager);
    //
    // or with the root, criteria query and criteria builder directly
    //
    Criters.<Foo, Filter<Foo>> factory().use(root, criteriaQuery, criteriaBuilder);

Spring Data JPA

<dependency>
    <groupId>se.oyabun.criters</groupId>
    <artifactId>criters-spring-data-jpa</artifactId>
    <version>${criters-engine.version}</version>
</dependency>

Annotate your filter object the regular way and let your specifications extend CritersSpecification<E, F extends Filter<E>>.

   public class FooSpecification
           extends CritersSpecification<Foo, Filter<Foo>> {
   
       public FooSpecification(final Filter<Foo> searchFilter) {
   
           super(searchFilter);
   
       }
   
   }

Project Structure

╔═════════════════════════╗ 
║ Criters Project Reactor ║
╚═╤═══════════════════════╝ 
  │   ╔═════════════════════╗
  ├───╢ Criters Annotations ║
  │   ╚═════════════════════╝
  │   ╔════════════════╗
  ├───╢ Criters Engine ║
  │   ╚════════════════╝
  │   ╔═════════════════════════╗
  ├───╢ Criters Spring Data JPA ║
  │   ╚═════════════════════════╝
  │   ╔════════════════════════╗
  ├───╢ Criters Hibernate Test ║
  │   ╚════════════════════════╝
  │   ╔══════════════════════════╗
  ├───╢ Criters EclipseLink Test ║
  │   ╚══════════════════════════╝
  │   ╔═══════════════════════╗
  ├───╢ Criters Core JPA Test ║
  │   ╚═══════════════════════╝
  │   ╔═══════════════════╗
  └───╢ Criters Core Test ║
      ╚═══════════════════╝
se.oyabun.criters

Oyabun AB

Open source repositories

Версии библиотеки

Версия
1.0.1
1.0.0