Java/Spring

[Spring] MyBatis 프레임워크

퓨어맨 2022. 7. 18. 00:43

// 쿼리문이 간단하다면 위쪽에 annotation 추가해서 처리할 수 있다.
@Delete("delete from board where idx=#{idx}")
public void boardDelete(int idx);