python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to provide CassandraEntityInformation<T, ID> for a SimpleReactiveCassandraRepository?
I'm doing some research bout spring-data-cassandra-reactive and it looks like I can't figure out or find the right documentation about this.
According to the documentation you can create an interface ...
tftd
Votes: 0
Answers: 1
How to map from Page<ObjectOne> to Page<ObjectTwo> in Spring Data 2?
I'm looking at some old code and I'm trying to re-write it however I encountered a problem.
This is the old code that works perfectly fine:
public Page<SearchResult> search(String text, int page...
JustQuest
Votes: 0
Answers: 1
How to rid of code duplication when two similar repositories?
Upon given type I want to retrieve data from either one or another repority. This is what I came up with:
if (type.equals("first")) {
codes = firstRepository.findAll().st...
Fedor Nikolaev
Votes: 0
Answers: 2
Spring Data AWS DynamoDB Repository Find By Contains throws ClassCastException
I have an AWS DynamoDB Table called Group Table. It contains two fields ID and Members. The members field is a String Set. I would like to search the Group Table and return all Groups where the list o...
Kaylen Bates
Votes: 0
Answers: 2