자바/Spring
Spring,MyBatis 실무 과정 자료] Mapper Interface Annotation
행복한짱짱이
2017. 4. 25. 20:21
Spring,MyBatis 실무 과정 자료] Mapper Interface Annotation
Spring,MyBatis 실무 과정 자료] Mapper Interface Annotation
실무개발자를위한 실무교육 전문교육센터학원
www.oraclejava.co.kr에 오시면 보다 다양한 강좌를 보실 수 있습니다.
Mapper Interface Annotation
■ Mapper 인터페이스의 특징이 직접 SQL을 지정가능하다는 점.
■ @Select(“SELECT * FROM EMP WHERE EMPNO = #{empNo}”)
■ Emp selectEmp(int id);
- 한계 있다.