The reference to entity "characterEncoding" must end with the ';' delimiter.
Spring, Xml Delimiter Error
xml 작업 중, 이런 에러를 찾아 보게 됩니다.
에러가 뜨는 이유는 & 이녀석 때문인데요.
xml은 & 문자를 구분하기 어려워합니다.
따라서 이 부분을 &로 고쳐주시면 됩니다.
사진과 같이 &를 &로 바꿔주면 끝~
Befor
<property name="url" value="jdbc:mariadb://localhost:3306/SHOOTING?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC" />
After
<property name="url" value="jdbc:mariadb://localhost:3306/SHOOTING?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC" />
반응형
'Web > Spring' 카테고리의 다른 글
[Spring] 갑자기 프로젝트가 실행이 되지 않는다. (0) | 2021.07.19 |
---|---|
[Spring] Mybatis, selectKey 활용하기 (0) | 2021.06.07 |
[Spring] org.springframework.web.multipart.MultipartHttpServletRequest (0) | 2021.06.03 |
[Spring] Properties 고급버전 (0) | 2021.05.17 |
[Spring] Properties 사용하기 (0) | 2021.05.11 |