0
執行的MyBatis 3.2.8我使用的元素「財產」作爲元素「包括」內容,如文檔中表示:的SAXParseException元素的內容包括必須匹配空
http://mybatis.org/mybatis-3/es/sqlmap-xml.html
<select id="selectUsers" resultType="map">
select
<include refid="userColumns"><property name="alias" value="t1"/></include>,
<include refid="userColumns"><property name="alias" value="t2"/></include>
from some_table t1
cross join some_table t2
</select>
當我嘗試執行上面的代碼中,我得到的錯誤:元素的SAXParseException內容包括必須匹配空
我下載了DTD,這是正確的:
<!-- Dynamic -->
<!ELEMENT include (property+)?>
<!ATTLIST include
refid CDATA #REQUIRED
>
那麼,爲什麼我收到異常?