1,045 questions
0
votes
1
answer
88
views
SpringBoot - converting from Jackson2 to Jackson3 - missing type id property '@class'
I have a projecto that was using SpringBoot 3.3.0 with Jackson2 dependency, after I changed to SpringBoot 4.0.2 with Jackson3 dependency the code stop to work.
Jackson2:
import com.fasterxml.jackson....
0
votes
1
answer
106
views
Mockito ArgumentMatchers.any(Class) for varargs parameter does not match
I have test method using mockito 5
@Test
public void test_increaseUserScore_Successful() throws CannotCreateCachedUserException {
when(cachedUserRepository
.existsById(...
0
votes
0
answers
68
views
How to get access to field of nested reference in Redis Document from autogenerate metamodel
I am using redis-om-spring:1.0.4 with spring boot 3.4.10 for getting @Document support.
I have some class like
@Setter
@Getter
class Vehicle {
@Id
private String id;
...
1
vote
1
answer
240
views
Spring Boot 3 with Lettuce: How to avoid SENTINEL REPLICAS command when user lacks permissions?
I am setting up a Spring Boot 3 application (using Gradle and Java 17) with Redis Sentinel and the Lettuce client (non-reactive, with RedisTemplate).
Our infrastructure team has provided a Redis ...
1
vote
1
answer
40
views
Spring - Cache - Concurency issue
I have this cache
@Cachable(cacheName = CACHE_MY_CACHE, key="#param", sync=true)
public Object doStuff(String param){
...
}
Which is using Redis in the background so it's distributed ...
1
vote
0
answers
72
views
Why does findByTypeNotIn in Redis OM Spring generate the same RediSearch query as findByTypeIn?
I’m using Redis OM Spring with a simple repository:
@Document(value = "Marker", indexName = "MarkerIdx")
data class RedisMarker(
//other indexed
@Indexed
...
0
votes
1
answer
126
views
OAuth2Authentication token serializing by spring session with redis
I am using spring session for redis for my oauth2 login. I have implemented a custom principal.
@Data
@NoArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
public final class ...
-4
votes
1
answer
127
views
Change default configuration properties for spring-boot-starter-data-redis
I want to use spring-boot-starter-data-redis with custom configuration properties:
redis:
host: localhost
port: 6379
password: pass
timeout: 5000
It's working only when I use:
spring:
...
0
votes
1
answer
108
views
Spring Data Redis Repository Function delete...By not working?
I am using spring-data-redis (version 3.5.0-M2).
This is my entity class:
@RedisHash("Embedding")
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Embedding {
@Id
private ...
1
vote
0
answers
188
views
How to use RedisTemplate.execute(SessionCallback) without type issues?
Here's my basic example setup:
private final RedisTemplate<String, Object> redisTemplate;
public void save(Object thing, Instant expiresAt) {
redisTemplate.execute(new SessionCallback<...
1
vote
1
answer
859
views
Lettuce Redis: Does Command Timeout Include Connection Pool Wait Time?
I'm using LettuceConnection with a connection pool to connect my application to a Redis server. However, during load testing, I encountered a significant number of command timeout errors. Initially, I ...
2
votes
2
answers
163
views
Does Redis save long as Int?
I've got this exception.
java.lang.ClassCastException: class java.lang.Integer cannot be cast to class java.lang.Long (java.lang.Integer and java.lang.Long are in module java.base of loader 'bootstrap'...
0
votes
1
answer
37
views
Spring Declarative Annotation-based Caching compatibity with Redis Template Implementation
When I am inserting object to redis, I am using spring annotation and when I try to get the object I am using redis template implementation. While doing so, I am getting exception.
Below is the spring ...
0
votes
2
answers
154
views
unable to cast body as String from ResponseEntity
In my Spring Boot environment I was testing some API. From Service I am returning ResponseEntity.
However when I try to collect its body in controller class, I am getting exception.
Service class ...
0
votes
1
answer
243
views
spring-data-redis with Microsoft Entra ID authentication
Couldn't find any way how to integrate spring-data-redis with Microsoft Entra ID authentication. Seems RedisTemplate can work only with RedisConnectionFactory which doesn't support connection through ...