Skip to content

Reactive support #404

Open
Open
@jordanst3wart

Description

@jordanst3wart

Feature request, porting it initially from here: derjust#138

It would be great having support for the reactive spring boot stack.

Currently, i'm getting:

org.springframework.dao.InvalidDataAccessApiUsageException: Reactive Repositories are not supported by DynamoDB. Offending repository is com.example.app.repository.ItemRepository!

The repository looks like:

package com.example.app.repository;

import com.example.app.model.Item;
import org.springframework.data.repository.reactive.ReactiveCrudRepository;
import reactor.core.publisher.Mono;

// ReactiveSortingRepository maybe and pageable
public interface ItemRepository extends ReactiveCrudRepository<Item, Integer> {
  Mono<RawItem> findRawItemById(Integer id);
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions