UserMapper.xml 634 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.lc.mapper.UserMapper">
  6. <!-- 缓存标签 -->
  7. <!-- <cache ></cache>-->
  8. <!-- 第三方缓存 -->
  9. <cache type="org.mybatis.caches.ehcache.EhcacheCache"/>
  10. <select id="getUserById" resultType="user" >
  11. select
  12. *
  13. from t_user where id = #{id}
  14. </select>
  15. <select id="getUserList" resultType="user" >
  16. select
  17. *
  18. from t_user
  19. </select>
  20. </mapper>