반응형
com.sun.org.apache.xerces.internal.util.URI$MalformedURIException: Path contains invalid character: 바
위와 같은 에러가 날 때
원인을 찾아보니 기본내장된 xml parser로는 한글처리가 부족해서 다른 xml parser를 추가시켜줘야했다.
pom.xml에 apache 에서 만든 xerces 파서를 정보를 넣어주면 해결된다.
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.9.1</version>
</dependency>
반응형
'에러 및 오류' 카테고리의 다른 글
[에러] version JVM is not suitable for this product (0) | 2021.07.12 |
---|---|
classNotFoundexception (0) | 2021.07.07 |
java.net.ConnectException: Connection refused: connect (0) | 2021.02.08 |
이미지가 로드되지 않을때 (0) | 2021.02.03 |
[에러] java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (SCOTT.SYS_C007955) violated (0) | 2021.01.31 |