추천 하 는 MyBatis 전송 방식 List, 배열 등

MyBatis 가 추천 하 는 인삼 전달 방식.
MyBatis 를 자세히 배 우려 면 이 튜 토리 얼 을 추천 합 니 다.https://www.w3cschool.cn/mybatis/
1. 단일 매개 변수
//    
int getAgeById(Integer id);
//xml    

2. 여러 개의 인자
//    
 User login(@Param("username") String username, @Param("password") String password);
 //xml    
 

3. 배열 매개 변수
//    
ArrayList selectByIds(Integer [] ids);
//xml    

4. List 파라미터
//    
ArrayList selectByIds(List ids);
//xml    
 

좋은 웹페이지 즐겨찾기