73: Spring MyBatis mapper

jk·2024년 4월 17일
0

kdt 풀스택

목록 보기
112/127



1. 마이바티스 2에서의 사용법과 3에서의 사용법 4가지를 정리하시오.

@Autowired
private SqlSessionTemplate sqlSession;
public VO selectVO() throws Exception {
	return sqlSession.getMapper(VO.class);
}
@Autowired
private SqlSessionTemplate sqlSession;
public List<VO> selectList() throws Exception {
	return sqlSession.selectList(mapperName.selectList);
}
@Mapper
public interface SomethingMapper {
	@Select("select * from something")
	List<VO> getList();
}
@Mapper
public interface SomethingMapper {
	List<VO> getList();
}
profile
Brave but clumsy

0개의 댓글