MyBatis를 설정하다 보니, 아래와 같은 오류를 발견했다.
The content of element type "configuration" must match "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?,objectWrapperFactory?,plugins?,environments?,databaseIdProvider?,mappers?)".
이 오류는, MyBatis의 Configuration 엘리먼트의 자식으로 설정되는 엘리먼트들의 순서가 잘못되었다는 오류이다.
오류 메세지에서 보이는대로, 순서를 수정해주면 오류를 해결 할 수 있다.
'Java > MyBatis' 카테고리의 다른 글
MyBatis에서 프로시져 호출하기. (0) | 2018.03.16 |
---|---|
MyBatis에서 Paging 처리 하기. (0) | 2016.12.31 |