Skip to content

Releases: evgeniycheban/spring-data-reindexer

1.1

05 Aug 14:37
Compare
Choose a tag to compare

In this release:

  • Transaction support using the @Transactional annotation approach has been introduced.
  • gh-1 Support for more return types has been implemented for methods that use @Query annotation.

1.0

30 Jul 20:45
Compare
Choose a tag to compare
1.0

The Spring Data approach to work with Reindexer database has been introduced in this release.

The 1.0 release includes:

  • A base repository interface: ReindexerRepository that contains CRUD and reindexer-specific methods.
  • Support for creating query methods like: Optional<TestItem> findByNameOrValue(String name, String value).
  • Support for creating native queries using @Query annotation like: @Query("SELECT * FROM items WHERE name = 'testName'").
  • Support for building query criteria using ReindexerRepository#query method that returns query builder for further customizations.