Mybatis注解开发

1. 注解开发

a)        @Select , @Update ,@Delete,@Insert, @Param

     @Select("select * from t_student order by id")

     public List<Student> selectAll();

 

     // 在使用@Param注解时:@Param("") 必须与条件 where id = #{} 相等

     @Select("select * from t_student where id = #{id}")

     public Student selectById(@Param("id") int sid);

 

     @Update("update t_student set name = #{name} where id = #{id}")

     public int updateStudent(Student stu);

 

     @Delete("delete from t_student where id = #{id}")

     public int deleteSudent(@Param("id") int id);

 

     @Insert("insert into t_student (name,gender,age) values(#{name},#{gender},#{age})")

     public int insertStudent(Student stu);

b)        @Results , @Result

Id=true:跟<id property="id" column="id"/>意思一样。

     @Results(value={

              @Result (id=true, column="id",property="cid"),

              @Result (column="name",property="cname"),

              @Result (column="beginTime",property="beginTime"),

     })

     @Select("select id,name,beginTime from t_classes")

     public List<Classes> findAll();

c)        @Many

@Select("select * from t_student where cid=#{0}")

     List<Student> findStuById(int cid);

      @Results(value={

                 @Result(id=true,property = "cid",column="id"),

                 @Result(property = "cname",column="name"),

                 @Result(property = "beginTime",column="beginTime"),

                 @Result(property = "students",many=@Many(select="findStuById"),column="id"),

           })

      @Select("select * from t_classes")

      List<Classes> findAll();



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值