The content of element type "sqlMapConfig" is incomplete,
时间:2014-02-19 20:23:25
收藏:0
阅读:1799
The content of element type "sqlMapConfig" is incomplete, it must match "(properties?,settings?,resultObjectFactory?,typeAlias*,typeHandler*,transactionManager?,sqlMap+)+".
xml如下:
<?xml version="1.0" encoding="GB2312" standalone="no"?> <!DOCTYPE sqlMapConfig PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-config-2.dtd"> <sqlMapConfig> <settings cacheModelsEnabled="false" enhancementEnabled="true" lazyLoadingEnabled="false" errorTracingEnabled="true" maxRequests="400" maxSessions="40" maxTransactions="32" useStatementNamespaces="true"/> </sqlMapConfig>
原因是:sqlmap.xml中节点sqlMap 没有加上。
加上sqlmap即可。如下:
<?xml version="1.0" encoding="GB2312" standalone="no"?> <!DOCTYPE sqlMapConfig PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-config-2.dtd"> <sqlMapConfig> <settings cacheModelsEnabled="false" enhancementEnabled="true" lazyLoadingEnabled="false" errorTracingEnabled="true" maxRequests="400" maxSessions="40" maxTransactions="32" useStatementNamespaces="true"/>
<sqlMap resource="conf/dal/sqlmap/aa.ibatis.xml"/> </sqlMapConfig>
原文:http://www.cnblogs.com/iusmile/p/3555343.html
评论(0)