MyBatis_注解式开发

一、注解式开发

mybatis的注解主要替换映射文件。

二、基础语法

  • 注解首字母大写,因为注解与类、接口是同一级别的(类同一层级的:类,接口,注解,枚举)。一个注解,后台对应着一个@interface。
  • 在同一语法单元上,同一注解只能使用一次。

三、示例:

 import java.util.List;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.SelectKey;
import org.apache.ibatis.annotations.Update; import com.jmu.bean.Student; public interface IStudentDao {
@Insert(value = { "insert into student(name,age,score) values(#{name},#{age},#{score})" })
void insertStudent(Student student); @Insert("insert into student(name,age,score) values(#{name},#{age},#{score})")
@SelectKey(statement = "select @@identity", resultType = int.class, keyProperty = "id", before = false)
void insertStudentCacheId(Student student);// 插入后获取 @Delete(value = "delete from student where id=#{XXX}")
void deleteStudentById(int id); @Update("update student set name=#{name},age=#{age},score=#{score} where id=#{id}") // 只用到一个value属性,可以不写
void updateStudent(Student student); @Select("select id,name,age,score from student")
List<Student> selectAllStudents();// 查询所有 @Select("select id,name,age,score from student where id=#{JJJ}")
Student selectStudentById(int id); // 根据id查询 @Select("select id,name,age,score from student where name like '%' #{XXX} '%'")
List<Student> selectStudentsByName(String name);// 模糊查询
}

com.jmu.dao.IStudentDao

MyBatis_注解式开发

上一篇:clientdataset 用法


下一篇:如何消除img默认的间距