mybatis学习

 使用mybatis注解开发,可以省去类配置文件,简洁方便。但是比较复杂的SQL和动态SQL还是建议书写类配置文件。预习了下注解方式,这种接口的方式对于我来说是比较习惯的。

  <!-- 定义接口,在接口方法中直接书写SQL -->
public interface IUserDao {
  @Insert("insert into t_user(userName,classId) values(#{userName},#{classId})")
 public void add(UserBean bean) throws Exception;
   @Delete("delete from t_user where id=#{id}")
 public void del(int id) throws Exception;

也照着书练习一遍

package com.lovo.dao;
 public interface IManDao {
 @Insert("insert into t_man(manName,birthday) values(#{manName},#{birthday})")
 public void add(ManBean bean)throws Exception;
 @Select("select * from t_man")
 public List<ManBean> findAll()throws Exception;
}
mybatis和spring整合(注解方式)
  但是spring没理解到,单独预习还是有点吃力

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值