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
- 개발 어렵당.ㅠ
- formik
- UnsupportedOperationException
- 애자일 싫타
- 논블록킹 성능
- reids
- R2DBC Paging
- Loki 로그
- 월급루팡 일지
- intellij
- Ingress Controller Fake
- OIDC
- jsonMarshaller
- RedirectService
- fake jwt
- 노드간 통신
- 티스토리챌린지
- Armeria
- jar 배포
- ㅉ때
- 7879
- pinpoint 2.5.3
- pinpoint
- save/update
- LPOS
- 오블완
- 핀포인트
- hbase 저장공간 설정
- nGinder
- 플루터
Archives
- Today
- Total
대머리개발자
jsonMarshaller must be non-null when serializationFormat is JSON. 본문
개발이야기/예외
jsonMarshaller must be non-null when serializationFormat is JSON.
대머리개발자 2023. 1. 31. 08:43728x90
메시지 proto 하나 수정했는데
java.lang.IllegalArgumentException
: jsonMarshaller must be non-null when serializationFormat is JSON.
다른 곳에서 삽질 할 뻔 했다. 휴~
message ScopeMapping {
string scope_id=1;
string client_id=2;
common.ExecuteEventType executeEvent=30;
int32 code = 31;
string message = 32;
repeated ScopeMapping list=33;
int32 list_count=34;
}
문제의 원인은 변수 네이밍이다. mapping_list을 단순 list로 했더니.. 그래 늘 풀네임으로 그냥 가자!!
서버는 잘 기동 되었으나 gRpc 모든 요청에 오류가 발생
728x90