spring boot整合mybatis使用注解得到自增主键返回值

spring boot整合mybatis得到自增主键返回值

实体类

@Data
public class OrderRecord {

    private int applicantId;
    private String reason;
    private String members;
    private String startTime;
    private String endTime;
    private int flag;
    private int state;
    private int roomId;
    private int recordId;
    private int departmentId;
    private int companyId;
}

Mapper接口

public interface SimpleUserMapper {

    @Insert("insert into order_record(applicant_id,reason,members,start_time,end_time,room_id,state,department_id,company_id) values(#{applicantId},#{reason},#{members},#{startTime},#{endTime},#{roomId},#{state},#{departmentId},#{companyId})")
    @Options(useGeneratedKeys = true,keyProperty = "recordId")
    int addRecord(OrderRecord orderRecord);
}

useGeneratedKeys设为true是表示使用jdbc的getGeneratedKeys方法来取出数据的主键值(默认为false)

keyProperty标记返回的主键值传递给某个具体的属性(本例是将返回的值重新封装给recordId)

测试

@RunWith(SpringRunner.class)
@SpringBootTest
public class ManagementApplicationTests {

	@Autowired
	private SimpleUserMapper simpleUserMapper;

	@Test
	public void contextLoads() throws UnsupportedEncodingException {
        
		OrderRecord orderRecord = new OrderRecord();
		orderRecord.setApplicantId(1);
		System.out.println(orderRecord.getRecordId());
		simpleUserMapper.addRecord(orderRecord);
		System.out.println(orderRecord.getRecordId());

	}
测试结果

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值