# Spring Mybatis로 insert후 key 값 반환하기 스프링 마이바티스 사용하여 insert 한 뒤 바로 키값을 return하려면 어떻게 해야할까요?
## How to return id on Inserts with mybatis with annotation ``` @Insert("insert into carts (status) values (#{status})") @Options(useGeneratedKeys=true, keyProperty="id") int create(int status); ``` ## Ref. + https://goo.gl/S4s5LA