spring-boot-realworld-examp.../src/main/resources/mapper/TagReadService.xml

7 lines
325 B
XML
Raw Normal View History

2017-08-17 16:17:37 +07:00
<?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" >
2017-08-18 16:08:27 +07:00
<mapper namespace="io.spring.infrastructure.mybatis.readservice.TagReadService">
2017-08-17 16:17:37 +07:00
<select id="all" resultType="string">
select name from tags
</select>
</mapper>