somt/modules/target/classes/mapper/StudentMapper.xml

20 lines
659 B
XML
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?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">
<!--
1.在mybats的开发中namespace有特殊的意思一定要是对应接口的全限定名
通过namespace可以简历mapper.xml和接口之间的关系(名字不重要,位置不重要)
-->
<mapper namespace="com.bw.dao.StudentDao">
<insert id="add">
insert into t_student VALUES (null,#{name},#{age})
</insert>
<delete id="delect">
</delete>
<select id="StudentList" resultType="com.bwie.pojo.Student">
select * from t_student
</select>
</mapper>