반응형
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 |
Tags
- property or field 'jobparameters' cannot be found on object of type
- java 버전 변경
- el1008e
- springboottest
- querydsl no sources given
- springbatch error
- java
- error
- AWS CLI
- maybe not public or not valid?
- java version
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- 스프링부트테스트
- java 1.8 11
- yum install java
- easy
- springboot
- No tests found for given includes
- OpenFeign
- parse
- java 11
- mac os git error
- LeetCode
- Java 1.8
- no sources given
- JUnit
- aws
- Medium
- java 여러개 버전
- log error
Archives
- Today
- Total
목록no default no-arguments constructor found (1)
쩨이엠 개발 블로그
Cannot construct instance of `java.util.ArrayList$SubList` (no Creators, like default constructor, exist): no default no-arguments constructor found
1. 현상 자동완성을 위해 Redis 적용을 하고 나서 10개 이상이 쌓이면 지우기 위해 ArrayList를 sublist로 잘랐는데 그다음부터 Redis에서 값을 못가져오기 시작했다 List list = (List) 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.SerializationE..
개발/Spring
2023. 6. 14. 10:29