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
- 월급루팡 일지
- formik
- 논블록킹 성능
- LPOS
- UnsupportedOperationException
- 개발 어렵당.ㅠ
- 7879
- jsonMarshaller
- reids
- intellij
- 노드간 통신
- 티스토리챌린지
- Loki 로그
- pinpoint 2.5.3
- pinpoint
- RedirectService
- jar 배포
- R2DBC Paging
- 핀포인트
- ㅉ때
- hbase 저장공간 설정
- 오블완
- 플루터
- Armeria
- save/update
- fake jwt
- nGinder
- Ingress Controller Fake
- OIDC
- 애자일 싫타
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