ibatis配置文件的namespace

ibatis的配置文件中有一个命名空间的属性,如<sqlMap namespace="common">,默认情况下这个功能是关闭的。
要打开它需要在SqlMapConfig.xml文件中进行配置:
<sqlMapConfig>

<settings
cacheModelsEnabled="true"
enhancementEnabled="true"
lazyLoadingEnabled="true"
errorTracingEnabled="true"
maxRequests="32"
maxSessions="10"
maxTransactions="5"
useStatementNamespaces="true"
/>

......

</sqlMapConfig>

启用了命名空间后,我们用queryForXXX进行操作的时候就要加上命名空间了,即“ 命名空间名.ID名

typeAlias 节点不受命名空间的影响。

你可能感兴趣的:(xml,ibatis)