728x90
반응형
https://infinispan.org/docs/stable/logging/logs.html
https://infinispan.org/docs/stable/logging/logs.html
ISPN014043 Cannot find an appropriate Transformer for key type %s. Indexing only works with entries keyed on Strings, primitives, byte[], UUID, classes that have the @Transformable annotation or classes for which you have defined a suitable Transformer in
infinispan.org
JBoss 로그 코드들은 모듈 prefix 기반
| prefix | 의미 |
| UTxxxxx | Undertow (웹 서버 / HTTP 처리) |
| ISPNxxxxx | Infinispan (캐시 / 클러스터링) |
| WFLYxxxxx | WildFly 서버 자체 |
| JBASxxxxx | 구버전 JBoss AS |
| MSCxxxxx | 서비스 컨테이너 |
| ELYxxxxx | 보안 (Elytron) |
소스코드( UndertowMessages.java, UndertowLogger.java )를 직접 확인해보면 @Message(id=XXXXX) 가 바로 UT 코드임
✔ 예시
@Message(id = 193, value = "Character decoding failed")
👉 로그:
UT000193: Character decoding failed
UT
| 코드 | 메세지 | 의미 |
| UT000193 | Character decoding failed | 요청 파라미터 디코딩 실패 (한글 깨짐) |
| UT005023 | Exception handling request to [Path] | 요청 처리 중 예외 |
| UT010019 | Response already commited | 이미 응답 commit됨 |
| UT000054 | The maximum size 10485760 for an individual file in a multipart request was exceeded | 업로드 파일 사이즈 초과 |
ISPN
| 코드 | 메세지 | 의미 |
| ISPN000556 | Starting user marshaller '%s' | marshaller 시작 |
| ISPN100007 | After merge (or coordinator change), recovered members | 클러스터 병합/복구 |
| ISPN000554 | jboss-marshalling is deprecated and planned for removal | deprecated 경고 |
728x90
반응형
'WAS > JBOSS_WILDFLY' 카테고리의 다른 글
| 34. JBoss 7.4 한글 깨짐 현상 (0) | 2026.03.20 |
|---|---|
| 33. JBoss session timeout (0) | 2026.03.16 |
| 32. deployment-info (0) | 2026.01.23 |
| 31. 언어 설정 변경(charset) (0) | 2026.01.22 |
| 30. JBoss X-Forwarded-For(XFF) 설정 (0) | 2026.01.16 |