Skip to main content
New: Stack Overflow For Agents. The next generation of knowledge exchange. Learn more
Filter by
Sorted by
Tagged with
0 votes
0 answers
65 views

I am trying to convert a spring-based code to OSGI bundle. My activator class looks like this: package io.github.magwas.inez.osgi; import java.util.Dictionary; import java.util.Hashtable; import org....
Árpád Magosányi's user avatar
0 votes
0 answers
86 views

I have an application using spring-data-keyvalue. As I understand by default it uses HashMap without persistence. The documentation says I could use redis for that, with jedis (among others). I want ...
Árpád Magosányi's user avatar
0 votes
0 answers
39 views

can spring data keyvalue detect duplicate keys ? batch result : readCount=116361, filterCount=23687, writeCount=92674 readSkipCount=0, writeSkipCount=0, processSkipCount=0, commitCount=4655 i ...
wims.tijd's user avatar
0 votes
1 answer
170 views

Following https://www.baeldung.com/spring-data-key-value with Spring 3.1 and Java 17 I get and error where the Repo is not created unless I add @Enitity. Why? Is the blog wrong? Did I find a defect?...
JustinKSU's user avatar
1 vote
1 answer
460 views

There is an in-memory repository class: @Repository interface InMemoryBookRepository extends CrudRepository<Book, String> { int countByAuthor(String author); } The book model class: @Value @...
Reddi's user avatar
0 votes
1 answer
3k views

I'm trying to set up a spring boot project with two datasources. First datasource would be a H2 Database and second a MapRepository. Both repositories would share the same entity. I could manage to ...
Ina93's user avatar
4 votes
0 answers
2k views

I am trying to use a CrudRepository in association with spring-data-redis and lettuce. Following all the advice I can find I have configured my spring-boot 2.1.8 application with @ReadingConverters ...
theINtoy's user avatar
7 votes
1 answer
3k views

I'm trying to use @EnableRedisRepositories and @EnableMapRepositories in a project and I'm getting the following error message: Related cause: org.springframework.beans.factory....
vrish88's user avatar
0 votes
1 answer
2k views

I try to connect my Springboot(v1.4.2) App with a Hazelcast Cluster to find stored data. For that I'm using a hazelcast-client instance and I created a HazelcastRepository to search my data. The ...
Marc Waldmeyer's user avatar
0 votes
3 answers
953 views

I would like to use Oracle NoSQL database together with Spring data. The aim is to access the data over spring data repositories and even use spring data rest on top of it. So I think the spring-data-...
Joel Neukom's user avatar
8 votes
2 answers
15k views

I can't get Spring Data Rest with class inheritance working. I'd like to have a single JSON Endpoint which handles all my concrete classes. Repo: public interface AbstractFooRepo extends ...
Benjamin M's user avatar
2 votes
0 answers
487 views

Does Spring Data Key Value support derived delete query methods? It doesn't work for me. I extended Repository, declared a few CrudRepository methods, and added these derived query methods to it: ...
Kevin Condon's user avatar
0 votes
1 answer
2k views

Spring Data KeyValue looks great for quickly knocking up a mock microservice. How can I bootstrap it with data? I tried adding stuff to the KeyValueAdapter, but by specifying the bean myself, I've ...
DeejUK's user avatar