SQL1 [spring] MyBatis 구조 - Annotation 형태 [spring] MyBatis 구조 - Annotation 형태 Annotation 형태로 만들 수 있다.인터페이스로 설계mapper 패키지 생성 인터페이스 생성 id 를 메소드로 대신한다. /* * * select * from userinfo * */ public interface UserMapper { @Select("select * from userinfo") public List list(); } config 파일을 수정한다. getUserList() 를 변경한다. @Override public List getUserList() { System.out.println("UserDAO_MyBatis - getUserList"); //return sqlSession.selectList("user.lis.. 2016. 4. 26. 이전 1 다음