发布时间:2024-01-11 14:00
我们以操作下表(Student表)为例
创建Student类
目录结构
我们以查询所有学生信息为例
StudentMapper如下
目录结构
在resources下创建mybatis文件夹,在mybatis文件夹下创建mapper文件夹,将StudentMapper.xml放在mapper文件夹下。
StudentMapper.xml如下
DOCTYPE mapper
PUBLIC \"-//mybatis.org//DTD Mapper 3.0//EN\"
\"http://mybatis.org/dtd/mybatis-3-mapper.dtd\">
<mapper namespace=\"com.example.mybatis02.mapper.StudentMapper\">
<select id=\"getAllStudent\" resultType=\"com.example.mybatis02.bean.Student\">
select * from student
select>
mapper>
输出结果