문서 루트 요소 "mapper"은(는) DOCTYPE 루트 "null"과(와) 일치해야 합니다.
Mapper class 위에
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
있는지 체크.
----
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="NAME">
<select id=" " resultType=" ">
<![CDATA[
SELECT *
FROM table
]]>
</select>
</mapper>
'공부 > Java' 카테고리의 다른 글
Ajax ) JSP <->Controller 데이터 주고받을 때 (0) | 2018.02.09 |
---|---|
Spring AJAX JSON 415 에러 (0) | 2018.02.09 |
웹 페이지 경로 가져오기 (0) | 2018.02.02 |
Eclipse ) 패키지가 폴더 형태로 나올 때 (1) | 2018.02.02 |
JSTL 쓸 때 추가할 것 (0) | 2018.01.30 |