spring-boot-realworld-examp.../src/main/resources/mapper/UserReadService.xml
2017-08-18 17:08:27 +08:00

10 lines
528 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="io.spring.infrastructure.mybatis.readservice.UserReadService">
<select id="findByUsername" resultType="io.spring.application.data.UserData">
select * from users where username = #{username}
</select>
<select id="findById" resultType="io.spring.application.data.UserData">
select * from users where id = #{id}
</select>
</mapper>