반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- OpenFeign
- java 1.8 11
- java
- querydsl no sources given
- java 여러개 버전
- property or field 'jobparameters' cannot be found on object of type
- LeetCode
- AWS CLI
- JUnit
- springboottest
- el1008e
- maybe not public or not valid?
- Medium
- no sources given
- parse
- mac os git error
- springbatch error
- error
- log error
- springboot
- aws
- Java 1.8
- easy
- yum install java
- java version
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- java 11
- java 버전 변경
- 스프링부트테스트
- No tests found for given includes
Archives
- Today
- Total
쩨이엠 개발 블로그
Cannot construct instance of `java.util.ArrayList$SubList` (no Creators, like default constructor, exist): no default no-arguments constructor found 본문
개발/Spring
Cannot construct instance of `java.util.ArrayList$SubList` (no Creators, like default constructor, exist): no default no-arguments constructor found
쩨이엠 2023. 6. 14. 10:29728x90
반응형
1. 현상
자동완성을 위해 Redis 적용을 하고 나서 10개 이상이 쌓이면 지우기 위해 ArrayList를 sublist로 잘랐는데 그다음부터 Redis에서 값을 못가져오기 시작했다
List<String> list = (List<String>) redisTemplate.opsForValue().get(PRIFIX_USER + user.id());
list.add(0, keyword);
if(list.size() > 10) list = list.subList(0,9);
에러내용
[dispatcherServlet] in context with path [] threw exception [Request processing failed: org.springframework.data.redis.serializer.SerializationException: Could not read JSON: Cannot construct instance of `java.util.ArrayList$SubList` (no Creators, like default constructor, exist): no default no-arguments constructor found
at [Source: (byte[])"["java.util.ArrayList$SubList",["구움과자","과자","간장꽃게장 ","간장게장","간장게","아령","바","미샤 치마","미샤1"]]"; line: 1, column: 32]] with root cause
com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of `java.util.ArrayList$SubList` (no Creators, like default constructor, exist): no default no-arguments constructor found
at [Source: (byte[])"["java.util.ArrayList$SubList",["구움과자","과자","간장꽃게장 ","간장게장","간장게","아령","바","미샤 치마","미샤1"]]"; line: 1, column: 32]
2. 원인
sublist를 사용하면 직렬화가 제대로 안된다고 한다
그러면 사용을 아예 못하나? 그것도 아니었다
3. 해결
List<String> list = (List<String>) redisTemplate.opsForValue().get(PRIFIX_USER + user.id());
list.add(0, keyword);
if(list.size() > 10) list = new ArrayList<>(list.subList(0,9));
sublist 부분을 ArrayList로 다시 싸주면 해결!
728x90
반응형
'개발 > Spring' 카테고리의 다른 글
Comments