请教各位在mybatis下不同的命名空间的sql代码段id不能重复吗?
mybatis机制就是这样?还是有其他的方法来区分这个?(id 取不同的名字就算了 呵呵)
比如:<mapper namespace="user">
  <sql id="columns">id,name......</sql>
</mapper><mapper namespace="role">
  <sql id="columns">id,name......</sql>
</mapper>